/* Command Center custom styles (Tailwind covers most styling) */

/* Slim dark scrollbars to match the dark shell */
* {
  scrollbar-width: thin;
  scrollbar-color: #312e47 transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  background: #312e47;
  border-radius: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}

/* Dark-styled native select dropdowns */
select option {
  background-color: #181628;
  color: #e2e8f0;
}
