/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0ea5e9, #38bdf8);
  border-radius: 6px;
  border: 3px solid rgba(241, 245, 249, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #0284c7, #0ea5e9);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #0ea5e9 rgba(241, 245, 249, 0.8);
}