body {
    font-family: Arial, sans-serif;
    background: #01090f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgb(127, 227, 240);
    padding: 20px;
    width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
}

.input-section {
    display: flex;
    gap: 10px;
}

input {
    flex: 1;
    padding: 8px;
}

button {
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    background: #4CAF50;
    color: white (212, 212, 212, 0.938);
    border-radius: 4px;
}

button:hover {
    background: #45a049;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

li {
    background: white;
    padding: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.completed {
    text-decoration: line-through;
    color: gray;
}

.delete-btn {
    background: red;
    padding: 5px 8px;
    font-size: 12px;
}