/* ============================================
   CSS VARIABLES - Biến CSS toàn cục
   Chức năng: Định nghĩa màu sắc, kích thước, shadow dùng chung
   Sử dụng: Thay đổi giá trị ở đây để thay đổi theme toàn bộ
   ============================================ */

:root {
  /* Màu sắc chính */
  --bg: #e9f3ff;
  --card: #ffffff;
  --accent: #0b6ed7;
  --muted: #64748b;
  --red: #a30b0b;
  --text-primary: #0b2540;
  --border: #cbd5e0;
  
  /* Màu trạng thái */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  
  /* Kích thước */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  
  /* Shadow */
  --shadow: 0 8px 24px rgba(10, 25, 47, 0.06);
  --shadow-lg: 0 12px 32px rgba(10, 25, 47, 0.12);
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.04);
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  /* Typography */
  --font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.15s;
  --transition-base: 0.3s;
  --transition-slow: 0.5s;
}

/* Dark Theme Variables - Lấy từ 11_MENU_Client-main */
[data-theme="dark"] {
  --bg: #2d2723;
  --card: #3b332f;
  --muted: #ffffff;
  --accent: #ffca63;
  --border: #554c47;
  --text-primary: #ffffff;
}



