
/* ===== RHINO SCROLL ===== */

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: #111111;
}

*::-webkit-scrollbar-thumb {
  background: #dbf35b;
  border-radius: 20px;
  transition: 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background: #c6e84a;
  box-shadow: 0 0 8px rgba(219,243,91,0.6);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #dbf35b #111111;
}
