/*
  IMPORTANT: This application MUST be placed in the /ai folder.
  Server access URL will be ip/ai
  DO NOT change this path structure under any circumstances.
*/
/*
  Main Stylesheet for Index Page (index.html) - Import Order Matters

  Note: Chat-specific styles (for chat.html) are loaded separately
  via chat_*.css files linked directly in chat.html.
*/

/* 1. Base styles (variables, resets, fonts, basic elements, animations) */
@import url('base/base.css');

/* 2. Layout styles (header, footer, main structure for index page) */
@import url('base/layout.css');

/* 3. Reusable component styles (buttons, inputs, errors, etc. used on index page) */
@import url('base/components.css');

/* 4. Index page specific content styles (welcome, cards, suggestions) */
@import url('pages/index.css'); /* Renamed from content-initial.css */

/* 5. Chat-specific styles are NOT imported here. */

/* 6. Responsive adjustments (media queries for index page and shared components) */
@import url('base/responsive.css'); 