/* Google Workspace & Finance Design System Variables */
:root {
  /* Color Palette - Google Material Design Inspired */
  --gw-primary: #1a73e8;
  --gw-primary-dark: #1557b0;
  --gw-primary-light: #4285f4;
  --gw-secondary: #34a853;
  --gw-danger: #ea4335;
  --gw-warning: #fbbc04;
  --gw-info: #4285f4;
  --gw-success: #34a853;
  
  /* Grays */
  --gw-gray-50: #f8f9fa;
  --gw-gray-100: #f1f3f4;
  --gw-gray-200: #e8eaed;
  --gw-gray-300: #dadce0;
  --gw-gray-400: #bdc1c6;
  --gw-gray-500: #9aa0a6;
  --gw-gray-600: #80868b;
  --gw-gray-700: #5f6368;
  --gw-gray-800: #3c4043;
  --gw-gray-900: #202124;
  
  /* Surface Colors */
  --gw-surface: #ffffff;
  --gw-surface-variant: #f8f9fa;
  --gw-surface-container: #f1f3f4;
  --gw-surface-container-high: #e8eaed;
  
  /* Finance Specific Colors */
  --gf-green: #137333;
  --gf-red: #d93025;
  --gf-green-light: #e8f5e8;
  --gf-red-light: #fce8e6;
  
  /* Typography - Increased for better readability */
  --gw-font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gw-font-size-xs: 0.875rem;   /* 14px instead of 12px */
  --gw-font-size-sm: 1rem;        /* 16px instead of 14px */
  --gw-font-size-base: 1.125rem;  /* 18px instead of 16px */
  --gw-font-size-lg: 1.25rem;     /* 20px instead of 18px */
  --gw-font-size-xl: 1.5rem;      /* 24px instead of 20px */
  --gw-font-size-2xl: 1.75rem;    /* 28px instead of 24px */
  --gw-font-size-3xl: 2.125rem;   /* 34px instead of 30px */
  
  /* Font Weights */
  --gw-font-weight-normal: 400;
  --gw-font-weight-medium: 500;
  --gw-font-weight-semibold: 600;
  
  /* Spacing - Reduced for more compact layout */
  --gw-spacing-xs: 0.25rem;   /* 4px - unchanged */
  --gw-spacing-sm: 0.375rem;  /* 6px instead of 8px */
  --gw-spacing-md: 0.75rem;   /* 12px instead of 16px */
  --gw-spacing-lg: 1rem;      /* 16px instead of 24px */
  --gw-spacing-xl: 1.5rem;    /* 24px instead of 32px */
  --gw-spacing-2xl: 2rem;     /* 32px instead of 48px */
  
  /* Border Radius */
  --gw-border-radius-sm: 0.25rem;
  --gw-border-radius: 0.5rem;
  --gw-border-radius-lg: 0.75rem;
  --gw-border-radius-xl: 1rem;
  --gw-border-radius-2xl: 1.5rem;
  --gw-border-radius-pill: 50rem;
  
  /* Shadows */
  --gw-shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --gw-shadow-md: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  --gw-shadow-lg: 0 2px 3px 0 rgba(60, 64, 67, 0.3), 0 6px 10px 4px rgba(60, 64, 67, 0.15);
  --gw-shadow-xl: 0 4px 4px 0 rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
  
  /* Transitions */
  --gw-transition: all 0.15s cubic-bezier(0.4, 0.0, 0.2, 1);
  --gw-transition-fast: all 0.1s cubic-bezier(0.4, 0.0, 0.2, 1);
  --gw-transition-slow: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  
  /* Z-index */
  --gw-z-dropdown: 1000;
  --gw-z-sticky: 1020;
  --gw-z-fixed: 1030;
  --gw-z-modal-backdrop: 1040;
  --gw-z-modal: 1050;
  --gw-z-popover: 1060;
  --gw-z-tooltip: 1070;
}