@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Fraunces", serif;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  color: #0f172a;
  background-color: #f8fafc;
}

/* Custom scrollbar to match a refined aesthetic */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.gr-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Transitions */
.transition-all {
  transition: all 0.2s ease-in-out;
}
