
/* Custom styles for enhanced interactivity */

/* Tab content visibility */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Kanban specific styles */
.kanban-column {
    transition: all 0.3s ease;
}

.kanban-column.drag-over {
    border-style: dashed;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kanban-card {
    transition: all 0.2s ease;
    position: relative;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kanban-card.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    z-index: 1000;
}

.kanban-card.completed {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Enhanced animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-10px); 
    }
    60% { 
        transform: translateY(-5px); 
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce {
    animation: bounce 0.6s ease;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

/* Progress bar animations */
.progress {
    transition: width 0.3s ease;
}

/* Statistics hover effects */
.kanban-stats .text-center:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .kanban-column {
        margin-bottom: 1rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .md\\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Enhanced tab button animations */
.tab-btn {
    transition: all 0.2s ease;
}

.tab-btn:hover {
    transform: translateY(-1px);
}

.tab-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Celebration effect */
.celebration {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: bounce 0.6s ease;
    z-index: 10;
}
