@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import "tailwindcss";

body {
  background-color: var(--color-background) !important;
}

@theme {
  --color-primary: #3B82F6;
  /* Soft Blue (Tailwind's blue-500) */
  --color-secondary: #1D4ED8;
  /* Deeper Blue */
  --color-gray: #9CA3AF;
  /* Muted gray */
  --color-accent: #0EA5E9;
  /* Sky Blue for highlights */
  --color-accent-light: #E0F2FE;
  /* Light Blue for backgrounds */
  --color-success: #10B981;
  /* Green for success messages */
  --color-error: #EF4444;
  /* Red for errors */
  --color-warning: #F59E0B;
  /* Amber for warnings */
  --color-info: #60A5FA;
  /* Lighter blue for info */
  --color-background: #F1F5F9;
  /* Very soft blue-gray */
  --color-text-primary: #0F172A;
  /* Almost-black navy */
  --color-text-secondary: #475569;
  /* Muted navy-gray */
  --color-text-inverse: #FFFFFF;
  /* Always white for dark backgrounds */
  --color-border: #CBD5E1;
  /* Subtle blue-gray border */
  --color-border-dark: #94A3B8;
  /* Darker border gray */
  --color-violet: #6366F1;
  /* Soft violet */
}

button {
  cursor: pointer;
}

h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
}

h4 {
  font-size: 0.9rem;
  font-weight: 500;
}

h5 {
  font-size: 0.85rem;
  font-weight: 500;
}

h6 {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive (mobile) adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.95rem;
  }

  h4 {
    font-size: 0.85rem;
  }

  h5 {
    font-size: 0.8rem;
  }

  h6 {
    font-size: 0.75rem;
  }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}