/* Bailey Cranes Design Tokens */
:root {
  /* Colors - Primary */
  --color-primary: #0f0f0f;
  --color-primary-hover: rgba(15, 15, 15, 0.85);
  --color-white: #ffffff;
  --color-bg: #f5f5f5;
  --color-surface: #ffffff;
  --color-surface-hover: rgba(0, 0, 0, 0.025);
  --color-surface-active: rgba(0, 0, 0, 0.04);
  --color-accent-red: #e30614;

  /* Colors - Borders */
  --color-border: rgba(0, 0, 0, 0.10);
  --color-border-light: rgba(0, 0, 0, 0.06);
  --color-border-medium: rgba(0, 0, 0, 0.12);
  --color-border-focus: #0f0f0f;

  /* Colors - Text */
  --color-text: #0f0f0f;
  --color-text-secondary: rgba(0, 0, 0, 0.50);
  --color-text-muted: rgba(0, 0, 0, 0.40);
  --color-text-hint: rgba(0, 0, 0, 0.30);
  --color-text-label: rgba(0, 0, 0, 0.35);

  /* Colors - Input */
  --color-input-bg: #fafafa;
  --color-input-bg-focus: #ffffff;

  /* Colors - Status Badges */
  --status-new: #2563eb;
  --status-new-bg: rgba(37, 99, 235, 0.10);
  --status-contacted: #d97706;
  --status-contacted-bg: rgba(217, 119, 6, 0.10);
  --status-proposal: #7c3aed;
  --status-proposal-bg: rgba(124, 58, 237, 0.10);
  --status-closed: #16a34a;
  --status-closed-bg: rgba(22, 163, 74, 0.10);
  --status-sent: #2563eb;
  --status-sent-bg: rgba(37, 99, 235, 0.10);
  --status-viewed: #d97706;
  --status-viewed-bg: rgba(217, 119, 6, 0.10);
  --status-accepted: #16a34a;
  --status-accepted-bg: rgba(22, 163, 74, 0.10);
  --status-declined: #dc2626;
  --status-declined-bg: rgba(220, 38, 38, 0.10);
  --status-draft: rgba(0, 0, 0, 0.45);
  --status-draft-bg: rgba(0, 0, 0, 0.06);

  /* Colors - Danger */
  --color-danger: #dc2626;
  --color-danger-bg: rgba(220, 38, 38, 0.08);

  /* Colors - Overlay */
  --color-overlay: rgba(0, 0, 0, 0.60);

  /* Typography */
  --font-primary: "Zalando Sans SemiExpanded", "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 38px;
  --line-height: 1.5;

  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 4px 40px rgba(0, 0, 0, 0.20);

  /* Layout */
  --sidebar-width: 240px;
  --content-max-width: 1400px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
}
