/* Start custom CSS */::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: #004AAD;
  border-radius: 12px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #0073e6;
}
::-webkit-scrollbar-track {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #004AAD transparent;
}/* End custom CSS */