/* ===================================
   CUSTOM SCROLLBAR STYLES
   Dark Sci-Fi Theme Scrollbars
   =================================== */

/* Global Scrollbar Styling - Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(189, 0, 255, 0.3));
  border-radius: 5px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(189, 0, 255, 0.5));
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

::-webkit-scrollbar-corner {
  background: rgba(10, 10, 15, 0.8);
}

/* Firefox Scrollbar Styling */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.3) rgba(10, 10, 15, 0.8);
}

/* Hide scrollbars for specific elements if needed */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}