/* Page scrollbar */
::-webkit-scrollbar {
  width: 10px !important;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color, #2970A9);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-dark, #1e4d7a);
}

/* For Firefox page scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color, #2970A9) #f1f1f1;
} 