/* Minimal custom styles; Tailwind handles most of the UI. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scrolling in preview table */
.preview-scroll {
  scroll-behavior: smooth;
}

/* Thin scrollbars for WebKit */
.preview-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.preview-scroll::-webkit-scrollbar-track {
  background: #020617;
}
.preview-scroll::-webkit-scrollbar-thumb {
  background: #1f2933;
  border-radius: 999px;
}

/* For Firefox */
.preview-scroll {
  scrollbar-width: thin;
  scrollbar-color: #1f2933 #020617;
}
