.task-done-text {
    text-decoration: line-through;
    color: #94a3b8;
}


.is-late {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border: 2px solid #fecaca;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.1);
}

.late-tag {
    font-size: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

#done-list .late-tag {
    background: linear-gradient(135deg, #d97706 0%, #ff0000 100%);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.task-card {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.3s ease;
    border-left: 4px solid #e2e8f0; 
}

.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.task-card.priority-high { 
    border-left: 5px solid #ef4444 !important; 
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.task-card.priority-medium { 
    border-left: 5px solid #f59e0b !important; 
    background: linear-gradient(135deg, #fefbf2 0%, #ffffff 100%);
}

.task-card.priority-low { 
    border-left: 5px solid #10b981 !important; 
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}



@media (max-width: 768px) {
    .task-card {
        margin: 0 -1rem;
        padding: 1rem;
        border-radius: 0;
        border-left: 0 !important;
        border-right: 0;
        border-bottom: 4px solid #e2e8f0; 
    }
    
    .task-card.priority-high {
        border-left: 0 !important;
        border-bottom: 4px solid #ef4444 !important;
    }
    
    .task-card.priority-medium {
        border-left: 0 !important; 
        border-bottom: 4px solid #f59e0b !important;
    }
    
    .task-card.priority-low {
        border-left: 0 !important;
        border-bottom: 4px solid #10b981 !important;
    }
}

.empty-state {
    animation: fadeIn 0.6s ease-in-out;
}