/* Public index.css copied to /index.css in production
   Add any global styles you need here. This file ensures /index.css
   exists after Vite build and avoids 404 on deployed site. */

/* Basic reset and defaults */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Keep font family in sync with index.html */
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background-color);
}

/* Useful utility classes used across the app (add more as needed) */
.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Placeholder for any global overrides */

/* Custom Scrollbar */
/* Global Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 4px;
  border: 2px solid var(--background-color);
  /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-muted-color);
}

/* Specific override for custom-scrollbar class if needed (e.g. thinner) */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* End of public/index.css */