/* High-visibility custom scrollbar and dark theme */
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 5px;
  border: 2px solid #090d16;
}
::-webkit-scrollbar-thumb:hover {
  background: #06b6d4;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

:fullscreen,
:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  background-color: #020617 !important;
  padding: 0.5rem !important;
  box-sizing: border-box !important;
}

