@tailwind base;
@tailwind components;
@tailwind utilities;

[data-hydration-error] { display: none !important; }

:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0f2440;
  --accent: #3182ce;
  --accent-light: #63b3ed;
  --success: #38a169;
  --danger: #e53e3e;
  --warning: #d69e2e;
  --bg: #f7fafc;
  --bg-card: #ffffff;
  --text: #1a202c;
  --text-muted: #718096;
  --border: #e2e8f0;
}

body {
  background-color: var(--bg);
  color: var(--text);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}
