@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  /* Aligned with kohost dist / LuviHost main.css (--bs-*) */
  --primary: #0948b3;
  --primary-dark: #014cda;
  --primary-darker: #02345c;

  --success: #4bad44;
  --info: #38bdf8;
  --worning: #f59e0b;
  --danger: #e11d48;

  --gray: #64748b;
  --gray-light: #f8fafc;

  --custom-radius: 0.75rem;
  --primary-light: #ebf8fe;
  --danger-light: #fef2f2;
  --warning-light: #fffbeb;
  --success-light: #ecfdf3;

  --body-color: #475569;
  --heading-color: #1e293b;

  --border-color: #e2e8f0;
  --border-dark-color: #02345c;
  --border-primary-light: #38bdf8;

  --font-family-sans-serif: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-monospace: 'Inter', system-ui, -apple-system, sans-serif;
}

:root[data-bs-theme="dark"]{

  --primary: #38bdf8;
  --primary-dark: #0948b3;
  --primary-darker: #0c4a6e;

  --success: #4ade80;
  --info: #38bdf8;
  --worning: #fbbf24;
  --danger: #fb7185;

  --gray: #64748b;
  --gray-light: #1e293b;
  --dark: #0f172a;

  --custom-radius: .75rem;
  --primary-light: #1e3a5f;
  --danger-light: #3f1d26;
  --warning-light: #3a2f0a;
  --success-light: #14532d;

  --body-color: #94a3b8;
  --heading-color: #f8fafc;

  --border-color: #334155;
  --border-dark-color: #38bdf8;
  --border-primary-light: #7dd3fc;

}