/* VeaXpert — tema uyumlu scrollbar (site / panel / bot) */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.55) #121212;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e0c35a 0%, #c9a227 55%, #a88920 100%);
  border-radius: 10px;
  border: 2px solid #121212;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0d878 0%, #e0c35a 50%, #c9a227 100%);
  border: 2px solid #121212;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: #D4AF37;
  border: 2px solid #121212;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: #121212;
}

/* Yatay şeritlerde (chip menü vb.) scrollbar gizlenebilir — class ile */
.hide-scrollbar,
.hide-scrollbar * {
  scrollbar-width: none !important;
}
.hide-scrollbar::-webkit-scrollbar,
.hide-scrollbar *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
