/* Scrollbar width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scroll thumb (moving part) */
::-webkit-scrollbar-thumb {
  background: #ff0000;   /* red theme (Groom Car match) */
  border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff0000, #b30000);
  border-radius: 10px;
}