/* Task items and containers */
.tasks-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    justify-content: flex-start;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 0;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    width: 100%;
    min-height: 56px;
}

.task-item:hover {
    border-color: #0078d4;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.12);
    transform: translateY(-1px);
}

.task-item.completed .task-text {
    text-decoration: line-through;
    opacity: 0.6;
}

.task-item.completed {
    opacity: 0.8;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.task-checkbox:checked {
    background: #0078d4;
    border-color: #0078d4;
}

.task-text {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: #323130;
    line-height: 1.4;
    padding: 0 10px;
}

.star-icon {
    margin-left: auto;
    cursor: pointer;
    color: #d1d5db;
    transition: all 0.2s ease;
    font-size: 18px;
    padding: 5px;
    border-radius: 4px;
}

.star-icon:hover {
    color: #ffc107;
}

.delete-icon {
    margin-left: 10px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.2s ease;
    padding: 4px;
    border-radius: 4px;
}

.delete-icon:hover {
    color: #301313;
    background-color: rgba(220,56,69,0.1);
    transform: scale(1.1);
}

.delete-icon:active {
    transform: scale(0.95);
    background-color: rgba(220, 53, 69, 0.2);
}