/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    text-align: center;
    background-color: #4e0707;
    color: white;
    padding: 15px 0;
}

main {
    margin: 20p;
    text-align: center;
}

input[type="text"] {
    width: 60%;
    padding: 10px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4e0707;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
    
}


ul {
    list-style: none;
    padding: 0;
}

li {
    display: flex;
    justify-content: space-between;
    background: white;
    margin: 10px auto;
    padding: 10px;
    width: 60%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

li.completed {
    text-decoration: line-through;
    color: gray;
}


button.delete {
    background-color: #f44336;
    padding: 5px 10px;
    font-size: 14px;
}

button.delete:hover {
background-color: #d32f2f;    
}

