* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}
h1 {
    text-align: center;
    color: #047e08;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.card-body {
    margin-bottom: -10px;
}
#title {
    height: 50px;
    width: 100%;
    border-radius: 7px;
    border: 2px solid #887f7f;
    color: rgb(31, 31, 54);
    font-size: 22px;
    outline: none;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#description {
    height: 120px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border-radius: 10px;
    border: 2px solid #887f7f;
    color: rgb(31, 31, 54);
    outline: none;
    font-size: 18px;
    position: relative;
    padding: 10px 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#description::placeholder {
    position: absolute;
    top: 10%;
}
#search {
    height: 40px;
    width: 50%;
    border-radius: 10px;
    border: 2px solid #887f7f;
    color: rgb(9, 9, 192);
    outline: none;
    font-size: 18px;
    position: relative;
    left: 25%;
    padding: 0px 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#add {
    font-size: 22px;
    width: 50%;
    position: relative;
    left: 25%;
    padding: 5px 17px;
    outline: none;
    border: 2px solid #887f7f;
    background-color: white;
    color: #047e08;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
    margin-right: 15px;
    /* margin-bottom: 20px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#add:hover {
    color: white;
    background-color: #047e08;
    border: 2px solid #047e08;
}

.error {
    color: red;
    text-align: center;
}
.d-none {
    display: none;
}
#todoContainer {
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0%;
    padding: 0px 35px;
}
#todoContainer .todoCard {
    background-color: #f9f9f9;
    border: 2px solid #887f7f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.todoCard:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.todoCard h3 {
    font-size: 1.5rem;
    text-align: left;
    color: rgb(2, 2, 82);
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    text-align: left;
    color: rgb(31, 31, 54);
    margin: 0;
}


.fa-check {
    font-size: 1.2rem;
    padding-top: 5px;
    color: #025ec0;
    margin-right: 10px;
    transition: color 0.3s, transform 0.3s;
}
.fa-check:hover {
    color: #013872;
}
.fa-pencil {
    font-size: 1.2rem;
    padding-top: 5px;
    color: #047e08;
    margin-right: 10px;
    transition: color 0.3s, transform 0.3s;
}
.fa-pencil:hover {
    color: #003a02;
}
.fa-trash {
    font-size: 1.2rem;
    padding-top: 5px;
    color: #ca0202;
    margin-right: 10px;
    transition: color 0.3s, transform 0.3s;
} 
.fa-trash:hover {
    color: #640202;
}