body {
  margin: 0;
  font-family: 'Inter', Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Tahoma', 'Inter', sans-serif;
}

/* ===== Custom Vertical Scrollbar ===== */

/* WebKit Browsers (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
  width: 12px;
  /* width of scrollbar */
}

html::-webkit-scrollbar-track {
  background: #0F0F0F;
  /* background of the track */
  border-radius: 6px;
  /* rounded corners */
}

html::-webkit-scrollbar-thumb {
  background-color: #E45A2F;
  /* your brand color */
  border-radius: 6px;
  border: 3px solid #0F0F0F;
  /* optional padding around thumb */
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #cf4f26;
  /* slightly darker on hover */
}

/* Firefox */
html {
  scrollbar-width: thin;
  /* "auto", "thin", or "none" */
  scrollbar-color: #E45A2F #0F0F0F;
  /* thumb color | track color */
}

html::-webkit-scrollbar-thumb {
  transition: background 0.3s;
}