
.todobg {
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.todo-container {
    background: #1a0000;
    border: 2px solid #ff0000;
    padding: 20px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 0 10px #ff000088;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    background: #330000;
    color: white;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.task {
    background: #330000;
    padding: 8px 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    border: 1px solid #ff0000;
}

.task button {
    background: #990000;
    padding: 4px 8px;
    font-size: 12px;
    width: auto;
}