/* Apply to whole page */
::-webkit-scrollbar {
  width: 6px; /* thinner scrollbar */
}

::-webkit-scrollbar-track {
  background: #000000; /* black track */
}

::-webkit-scrollbar-thumb {
  background: #008080; /* teal color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00a3a3; /* lighter teal on hover */
}

/* Navbar payment warning — fixed under store logo, no layout shift */
.nav-payment-warning {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  margin: 0 !important;
  z-index: 1001;
}