/* Gold scrollbar styling for Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  background: #181818;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD700 60%, #bfa100 100%);
  border-radius: 8px;
  border: 2px solid #232323;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffe066 60%, #FFD700 100%);
}
::-webkit-scrollbar-corner {
  background: #232323;
}

/* Firefox */
html {
  scrollbar-color: #FFD700 #181818;
  scrollbar-width: thin;
}

/* Optional: Make sidebar scrollbars gold only */
.sidebar-scroll {
  scrollbar-color: #FFD700 #232323;
  scrollbar-width: thin;
}
