.container{
    display: flex;
    height: calc(100vh - 50px);
    justify-content: center;
    align-items: center;
}
.container > div{
    padding: 10px;
    border: 1px solid black;
    background-color: aquamarine;
}

.todo-form{
    padding: 10px;
}

label{
    width: 100px;
    margin-bottom: 10px ;
    background-color: grey;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    color:beige;
}

input{
    width:  200px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px;
    display: inline-block;
}

#name-error{
    color: red;
}

th,td{
    padding: 5px;
    font-weight: 100;
    border: 1px dotted black;
}
button{
    border-radius: 10px;
}
button:hover{
    background-color: rgb(67, 87, 125);
    color: white;
}
#delete,#clear-all{
    color: beige;
    background-color: rgba(210, 11, 11, 0.836);
}
#delete:hover,#clear-all:hover{
    background-color: rgb(255, 0, 43);
    color: aliceblue;
}

#id{
    background-color:aquamarine;
    color: black;
}

.fa-solid.fa-trash.hand{
    color: rgba(255, 0, 0, 0.453);
    margin: 10px;
}
.fa-solid.fa-trash.hand:hover{
    color : rgba(255, 0, 0, 0.941)
}

.fa-solid.fa-pen{
    color: rgba(0, 0, 0, 0.548);
}
.fa-solid.fa-pen:hover{
    color: black;
}

@keyframes remove {
    from{
        transform: translate(0);
    }
    to{
        transform: translate(100px);
        background-color: rgba(255, 0, 0, 0.863);
        opacity: 0;
    }
}
.red{
    background-color: rgba(238, 86, 86, 0.659);
    color: white;
    .fa-solid.fa-trash.hand{
        color: rgba(0, 0, 0, 0.548);
    }
    .fa-solid.fa-trash.hand:hover{
        color: black;
    }
}
.custom-remove-animation{
    animation: remove 10s ease infinite;
}

/*
Global Styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f3f4f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    padding: 20px;
    overflow: hidden;
}

Header
h1 {
    text-align: center;
    color: #4a90e2;
    margin-bottom: 20px;
}

Form Styles
#todo-form {
    margin-bottom: 30px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

input[type="date"],
input[type="time"],
input[type="url"] {
    width: 100%;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

Error Message
#name-error {
    color: red;
    font-size: 12px;
}

Button Styles
button {
    background-color: #4a90e2;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

button:hover {
    background-color: #357abd;
}

Operations Section
#operations {
    text-align: center;
    margin-bottom: 20px;
}

#operations button {
    margin: 5px;
}

Table Styles
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #4a90e2;
    color: white;
}

table tr:hover {
    background-color: #f7f7f7;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table td:last-child {
    text-align: center;
}

Records Section
#totals p {
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

Clear All Button
#clear-all {
    background-color: #e74c3c;
}

#clear-all:hover {
    background-color: #c0392b;
}

Responsive Design
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    input, textarea, button {
        width: 100%;
    }

    #operations {
        display: flex;
        flex-direction: column;
    }

    #operations button {
        width: 100%;
        margin-bottom: 10px;
    }

    table th, table td {
        font-size: 14px;
    }
}
*/