/* Custom scrollbar color for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #e6b31e; /* text-secondary gold */
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: #0B2545;
  border-radius: 6px;
}

/* Firefox scrollbar customization */
html {
  scrollbar-color: #e6b31e #0B2545;
  scrollbar-width: thin;
}

.no-scrollbar-8080 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none;
}
