/* ============================================================
   Mukesh K Designs Tools — Global Design System
   mukeshkdesigns.com/tools
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');


/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* — Sidebar (Dark) — */
  --sidebar-bg: #0f172a;
  --sidebar-bg-alt: #1e293b;
  --sidebar-text: #94a3b8;
  --sidebar-text-hover: #e2e8f0;
  --sidebar-text-active: #f1f5f9;
  --sidebar-width: 15%;
  --right-sidebar-width: 25%;
  --left-sidebar-current: var(--sidebar-width);
  --right-sidebar-current: var(--right-sidebar-width);

  /* — Main Content — */
  --main-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* — Accent Colors — */
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-light: #eef2ff;
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --accent-glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --accent-bg-subtle: rgba(99, 102, 241, 0.08);
  --accent-bg: rgba(99, 102, 241, 0.12);
  --accent-bg-medium: rgba(99, 102, 241, 0.15);
  --accent-focus-ring: 0 0 0 3px rgba(99, 102, 241, 0.12);
  --accent-focus-ring-strong: 0 0 0 3px rgba(99, 102, 241, 0.15);

  /* — Sidebar Overlay Shades — */
  --sidebar-hover-bg: rgba(255, 255, 255, 0.04);
  --sidebar-input-bg: rgba(255, 255, 255, 0.06);
  --sidebar-input-focus-bg: rgba(255, 255, 255, 0.1);
  --overlay-white-light: rgba(255, 255, 255, 0.2);
  --overlay-white-medium: rgba(255, 255, 255, 0.3);

  /* — Warning Shades — */
  --warning-bg-subtle: rgba(245, 158, 11, 0.15);

  /* — Status / Semantic — */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --error: #ef4444;
  --error-bg: #fef2f2;
  --info: #3b82f6;
  --info-bg: #eff6ff;

  /* — Typography — */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* — Spacing — */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* — Radius — */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* — Shadows — */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* — Transitions — */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}


