/* ==========================================================================
   Design System & Theme Variables - Green Base Theme
   ========================================================================== */

:root {
  /* Color Palette - Elegant Emerald & Forest Green Palette */
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-purple: #8b5cf6;

  /* Neutral Dark Modes / Sleek Backgrounds */
  --bg-dark-base: #064e3b;
  --bg-dark-surface: #065f46;
  --bg-dark-card: rgba(6, 95, 70, 0.7);
  
  --bg-light-base: #f0fdf4;
  --bg-light-surface: #ffffff;
  --bg-light-card: rgba(255, 255, 255, 0.9);

  /* Active Theme Mapping */
  --bg-main: #f0fdf4;
  --surface-card: #ffffff;
  --surface-hover: #e6f4ea;
  --border-color: #d1fae5;
  --border-subtle: #a7f3d0;

  --text-main: #064e3b;
  --text-muted: #047857;
  --text-inverse: #ffffff;

  /* Status Colors */
  --status-working-bg: #d1fae5;
  --status-working-text: #047857;
  --status-working-border: #6ee7b7;

  --status-off-bg: #f3f4f6;
  --status-off-text: #6b7280;
  --status-off-border: #e5e7eb;

  --status-left-bg: #fee2e2;
  --status-left-text: #b91c1c;
  --status-left-border: #fca5a5;

  --status-break-bg: #fef3c7;
  --status-break-text: #b45309;
  --status-break-border: #fcd34d;

  /* Typography */
  --font-family: 'Outfit', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(5, 150, 105, 0.05);
  --shadow-md: 0 4px 12px rgba(5, 150, 105, 0.1), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(5, 150, 105, 0.15), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
  --shadow-kiosk: 0 8px 24px rgba(5, 150, 105, 0.2);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
