/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Title */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Input section */
.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#todo-input {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
}

#todo-input:focus {
    border-color: #4facfe;
}

/* Add button (keep this — it's still a real button) */
button {
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    background: #4facfe;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #007bff;
}

/* Todo list */
ul {
    list-style: none;
}

/* Each todo */
li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Completed task */
li span.completed {
    text-decoration: line-through;
    color: gray;
}

/* NEW: Status icons container */
.status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* NEW: Indicator styling (replaces li button styles) */
.status-icon {
    font-size: 14px;
    opacity: 0.7;
    cursor: default; /* ensures it's NOT clickable */
}

/* Completed indicator */
.status-icon.complete {
    color: #28a745;
}

/* Delete indicator */
.status-icon.delete {
    color: #dc3545;
}


