/* Account management: keep the ID column readable in constrained table layouts. */
.table-wrapper[data-v-ae0ec1c6] th:nth-child(3),
.table-wrapper[data-v-ae0ec1c6] td:nth-child(3) {
  min-width: 5.5rem;
}

/* Keep scrollbars discoverable without requiring hover. */
* {
  scrollbar-color: rgba(107, 114, 128, 0.78) rgba(243, 244, 246, 0.7);
  scrollbar-width: thin;
}

.dark * {
  scrollbar-color: rgba(107, 114, 128, 0.9) rgba(17, 24, 39, 0.65);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background-color: rgba(243, 244, 246, 0.7);
}

.dark *::-webkit-scrollbar-track {
  background-color: rgba(17, 24, 39, 0.65);
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(107, 114, 128, 0.78);
  border-radius: 9999px;
}

.dark *::-webkit-scrollbar-thumb {
  background-color: rgba(107, 114, 128, 0.9);
}

*:hover::-webkit-scrollbar-thumb {
  background-color: rgba(75, 85, 99, 0.9);
}

.dark *:hover::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.9);
}
