body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 50px;
    min-height: 100vh;
}

.todo-wrapper {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 420px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    gap: 10px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
}

button {
    padding: 10px 16px;
    background-color: #4caf50;
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

li {
    background-color: #2b2b2b;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taskInfo {
    display: flex;
    flex-direction: column;
}


.task-text {
    flex: 1;
}

.task-buttons {
    display: flex;
    gap: 8px;
}

.task-buttons button {
    background-color: #555;
    padding: 6px 10px;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 0.85em;
    cursor: pointer;
}

.task-buttons button.done {
    background-color: #2196f3;
    text-decoration: none;
}

.task-buttons button.delete {
    background-color: #e53935;
    text-decoration: none;
}



.taskStatus {
    font-size: 0.85em;
    margin-top: 4px;
}

.statusInProgress {
    color: #fbc02d;
}

.statusDone {
    color: #4caf50;
}

.statusArchived {
    color: #9e9e9e;
}


.done {
    color: gray;
    background: #ddd;
}

.TD {
    text-decoration: line-through;
}

#recycleBin li {
    background-color: #3a3a3a;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

#recycleBin .restore {
    background-color: #4caf50;
}

#recycleBin .permadelete {
    background-color: #e53935;
}