/* variables.css
   Thorat ERP - Design System v1.0
   एकाच file मधून संपूर्ण theme बदलता येईल */

:root {
  /* ── Brand ───────────────────────────── */
  --primary:          #206BC4;
  --primary-hover:    #1C5FB0;
  --primary-light:    #EBF3FC;

  /* ── Status ──────────────────────────── */
  --success:          #2FB344;
  --success-light:    #EDFAF1;
  --warning:          #F76707;
  --warning-light:    #FFF4E6;
  --danger:           #D63939;
  --danger-light:     #FFF0F0;
  --info:             #4299E1;
  --info-light:       #EBF8FF;

  /* ── Sidebar ─────────────────────────── */
  --sidebar-bg:       #182433;
  --sidebar-hover:    #243447;
  --sidebar-active:   #206BC4;
  --sidebar-text:     #C8D3E1;
  --sidebar-width:    220px;

  /* ── Page ────────────────────────────── */
  --page-bg:          #F4F6FA;
  --card-bg:          #FFFFFF;
  --border-color:     #DCE1E7;

  /* ── Typography ──────────────────────── */
  --text-primary:     #1F2937;
  --text-secondary:   #6B7280;
  --text-muted:       #9CA3AF;
  --font-family:      'Inter', -apple-system, sans-serif;
  --font-size-base:   14px;

  /* ── Spacing ─────────────────────────── */
  --card-radius:      8px;
  --btn-radius:       6px;
  --input-radius:     6px;

  /* ── Shadow ──────────────────────────── */
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:        0 2px 6px rgba(0,0,0,0.10);

  /* ── Transition ──────────────────────── */
  --transition:       0.15s ease;

  /* ── Split View ──────────────────────── */
  --split-list-width: 35%;
  --split-detail-width: 65%;
}