/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
  /* Colors - Dark Theme (Default) */
  --dark-purple: #741C47;
  --light-purple: #A64D79;
  --text-gray: #989898;
  --notification-read-text: #9DA0B5;
  --text-white: #FFFFFF;
  --table-bg: #1E1E1E;
  --table-hover-bg: #2B2A32;
  --sidebar-bg: #171820;
  --main-bg: #0E0E0E;
  --main-bg-alt: #0F0F0F;
  --section-bg: #181820;
  --border-dark: #2C2C2C;
  --border-light: #3C3C3C;
  --badge-bg: #A64D79;
  --badge-bg-hover: #B55D89;
  --status-active-bg: #2D5A2D;
  --status-active-text: #90EE90;
  --status-completed-bg: #2D2D5A;
  --status-completed-text: #90CDFF;
  --status-planned-bg: #5A2D2D;
  --status-planned-text: #FFB090;
  --gray-light: #BBBBBB;
  --gray-bg: #f4f4f4;
  --card-border: #2B2A32;
  --text-primary: #FFFFFF;
  --input-bg: #1E1E1E;
  --table-header-bg: #2B2A32;
  --danger-red: #ff4757;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  
  /* Typography */
  --font-size-sm: 1rem;
  --font-size-base: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.625rem;
  
  /* Border radius */
  --border-radius-sm: 6px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Mention system colors (Dark theme) */
  --mention-highlight-bg: rgba(116, 28, 71, 0.2);
  --mention-highlight-hover: rgba(116, 28, 71, 0.4);
  --mention-selected-bg: rgba(116, 28, 71, 0.15);
}

/* Light Theme */
[data-theme="light"] {
  --text-gray: #1A1A1A;
  --text-white: #1A1A1A;
  --table-bg: #FFFFFF;
  --table-hover-bg: #F8F9FA;
  --sidebar-bg: #D8DADC;
  --main-bg: #fafafa;
  --main-bg-alt: #f5f5f5;
  --section-bg: #FFFFFF;
  --border-dark: #A8ACB0;
  --border-light: #95999D;
  --badge-bg: #A64D79;
  --badge-bg-hover: #B55D89;
  --gray-light: #555555;
  --gray-bg: #F8F9FA;
  --card-border: #E5E7EB;
  --text-primary: #1A1A1A;
  --input-bg: #FFFFFF;
  --table-header-bg: #F8F9FA;
  
  /* Status badge colors for light mode */
  --status-new-lead-bg: #1E40AF;
  --status-new-lead-text: #DBEAFE;
  --status-inspection-requested-bg: #B45309;
  --status-inspection-requested-text: #FED7AA;
  --status-inspection-booked-bg: #7C2D12;
  --status-inspection-booked-text: #FECACA;
  --status-quote-sent-bg: #3B82F6;
  --status-quote-sent-text: #DBEAFE;
  --status-quote-accepted-bg: #10B981;
  --status-quote-accepted-text: #D1FAE5;
  --status-job-completed-bg: #16A34A;
  --status-job-completed-text: #BBF7D0;
  --status-no-reply-bg: #6B7280;
  --status-no-reply-text: #E5E7EB;
  --status-not-interested-bg: #DC2626;
  --status-not-interested-text: #FECACA;
  
  /* Mention system colors (Light theme) */
  --mention-highlight-bg: rgba(116, 28, 71, 0.1);
  --mention-highlight-hover: rgba(116, 28, 71, 0.25);
  --mention-selected-bg: rgba(116, 28, 71, 0.08);
  --notification-read-text: #9DA0B5;
} 