body {
    font-family: 'Arial', sans-serif;
    background-color: #6e6e6e;
    margin: 0;
    padding: 0;
}

.container {
    width: 60%;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    text-align: center;
    color: #333;
}

.sort_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

#sortSelector {
    padding: 8px;
    font-size: 14px;
}

button {
    margin-top: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    background-color: #119340;
    color: #fff;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}

#newTask {
    width: 70%;
    padding: 8px;
    font-size: 14px;
}

ul {
    list-style-type: none;
    padding: 0;
}

.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.task input[type="checkbox"] {
    margin-right: 8px;
}

.completed {
    text-decoration: line-through;
    color: #888;
}

.delete-btn {
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    background-color: #c11806;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.delete-btn:hover {
    background-color: #db1600;
}

.edit-input {
    width: 70%;
    padding: 4px;
    font-size: 14px;
}

.edit-input:focus {
    outline: none;
    border: 1px solid #3498db;
}

.edit-input::placeholder {
    color: #95a5a6;
}
