/* Main CSS - Imports all modular stylesheets */

/* Core base styles (existing styles.css) */
@import url('../styles.css');

/* Legacy embedded styles (to be organized) */
@import url('./embedded-legacy.css');

/* Modular component styles */
@import url('./results.css');

/* Global overrides and utilities */
.hidden {
    display: none !important;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none !important;
    }
}