/* ============================================
   Empty State Component Styles
   ============================================ */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    min-height: 300px;
}

.empty-state-icon {
    margin-bottom: 1.5rem;
    color: var(--bs-secondary);
    opacity: 0.6;
}

.empty-state-svg {
    width: 120px;
    height: 120px;
    color: var(--bs-secondary);
}

.empty-state-fa-icon {
    font-size: 4rem;
    color: var(--bs-secondary);
}

.empty-state-content {
    max-width: 400px;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-body-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.empty-state-message {
    font-size: 0.95rem;
    color: var(--bs-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.empty-state-action {
    margin-top: 1rem;
}

/* Light Mode Specific */
.empty-state-icon {
    color: #6c757d;
}

.empty-state-title {
    color: #495057;
}

.empty-state-message {
    color: #6c757d;
}

/* Dark Mode Specific */
.dark-mode .empty-state-icon {
    color: #adb5bd;
}

.dark-mode .empty-state-svg {
    color: #adb5bd;
}

.dark-mode .empty-state-fa-icon {
    color: #adb5bd;
}

.dark-mode .empty-state-title {
    color: #dee2e6;
}

.dark-mode .empty-state-message {
    color: #adb5bd;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state {
    animation: fadeInUp 0.5s ease-out;
}

/* SVG Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empty-state-svg {
    animation: float 3s ease-in-out infinite;
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .empty-state {
        animation: none;
    }
    
    .empty-state-svg {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .empty-state {
        padding: 2rem 1rem;
        min-height: 250px;
    }
    
    .empty-state-svg {
        width: 100px;
        height: 100px;
    }
    
    .empty-state-fa-icon {
        font-size: 3rem;
    }
    
    .empty-state-title {
        font-size: 1.1rem;
    }
    
    .empty-state-message {
        font-size: 0.9rem;
    }
}

/* Compact variant for smaller areas */
.empty-state.empty-state-compact {
    min-height: 200px;
    padding: 2rem 1rem;
}

.empty-state-compact .empty-state-svg {
    width: 80px;
    height: 80px;
}

.empty-state-compact .empty-state-fa-icon {
    font-size: 2.5rem;
}

.empty-state-compact .empty-state-title {
    font-size: 1rem;
}

.empty-state-compact .empty-state-message {
    font-size: 0.85rem;
}
