.tasks-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tasks-content {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}

.task-input-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.task-input-card h2 {
    margin-top: 0;
}
#add-task-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}
#add-task-form input[type="text"] {
    flex-grow: 1;
    margin-bottom: 0;
}

.task-lists-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.task-list-wrapper h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}
.task-list {
    background-color: white;
    padding: 0.5rem;
    border-radius: 8px;
    min-height: 200px;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}
.task-item:last-child {
    border-bottom: none;
}
.task-item:hover {
    background-color: #f9f9f9;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
}

.task-details .title {
    font-weight: bold;
}
.task-details .due-date {
    font-size: 0.8rem;
    color: #888;
}

.task-item.completed .title {
    text-decoration: line-through;
    color: #999;
}

/* ADD to tasks.css */
.task-item .delete-btn {
    margin-left: auto; background: none; border: none;
    color: #999; cursor: pointer; font-size: 1rem;
}
.task-item .delete-btn:hover { color: #eb445a; }