* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    background-color: #f5f5f5;
    text-align: center;

}

.container {
    width: 90%;
    max-width: 500px;
    background-color: white;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.task-input {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

input,
select,
button {
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: orangered;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    color: white;
}

button:hover {
    background-color: cadetblue;
}

.serach-bar {
    margin-top: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background-color: white;
    padding: 10px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.completed {
    text-decoration: line-through;
    color: gray;
}

.clear-btn {
    margin-top: 20px;
    background-color: red;
}

.clear-btn:hover {
    background-color: green;
}