/**
 * Main CSS - The Exam Factory
 * Imports all CSS modules in the correct order
 * @version 0.39
 */

/* 1. CSS Variables (must be first) */
@import url('./variables.css');

/* 2. Base/Reset Styles */
@import url('./base.css');

/* 3. Layout Styles */
@import url('./layout.css');

/* 4. Component Styles */
@import url('./components.css');

/* 5. Page-Specific Styles */
@import url('./pages/seating.css');
@import url('./pages/timeline.css');

/* 6. Legacy Styles (for backwards compatibility) */
/* This ensures old class names like .nav-links, .modal-content work */
@import url('../../css/style.css');

/**
 * Note: Landing page styles (pages/landing.css) are included 
 * directly in index.html as they are only needed there.
 * 
 * This main.css file is used by all app pages (dashboard, 
 * data-center, timetable, etc.)
 */