:root {
  /* Colors */
  --primary-color: #1e4ea6;
  --primary-dark: #122f64;
  --primary-light: #42a5f5;
  
  --bg-secondary-main: #d2dced;
  
  --text-color: #030d20;
  --text-secondary: #0c1f42;
  
  --background-color: #f9fafb;
  --background-light: #f3f4f6;
  
  --border-color: #e5e7eb;

  --gradient-primary: linear-gradient(
          to right,
          #02ad7a,
          #321caa,
          #ae007e,
          #fe0036
  );


  /* Layout */
  --headbar-height: 80px;
  --sidebar-width: 250px;
  --sidebar-collapsed-width: 80px;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Typography */
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
  /* 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);
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}
