/* ================================================================
   Leonova Design System – Shared Theme
   Imported from shared/ui/theme.css, adapted for dashboard
   ================================================================ */

:root {
  /* Status Colors */
  --green: #2E7D32;
  --green-bg: #E8F5E9;
  --orange: #E65100;
  --orange-bg: #FFF3E0;
  --red: #C62828;
  --red-bg: #FFEBEE;
  --blue: #586E87;
  --blue-light: #E8ECF0;

  /* Brand Colors */
  --accent: #E5BE05;
  --cream: #F3EFE8;
  --sand: #D6CDBF;
  --gray: #F3EFE8;
  --dark: #333;
  --border: #D6CDBF;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.15);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--dark);
  background: var(--gray);
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--dark);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--accent); }
