/* Tema ↔ scrollbars nativos (Chrome/Edge/Firefox) */
:root,
[data-bs-theme="light"] {
  color-scheme: light;
}

[data-bs-theme="dark"] {
  color-scheme: dark;
}

/* Áreas con overflow (p. ej. listado en Nueva venta) */
.table-scroll {
  max-height: 360px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bs-secondary-color) transparent;
}

.table-scroll::-webkit-scrollbar {
  width: 0.55rem;
  height: 0.55rem;
}

.table-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.table-scroll::-webkit-scrollbar-thumb {
  background-color: var(--bs-secondary-bg);
  border-radius: 0.25rem;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--bs-secondary-color);
}

[data-bs-theme="light"] .table-scroll {
  scrollbar-color: #adb5bd #f1f3f5;
}

[data-bs-theme="light"] .table-scroll::-webkit-scrollbar-thumb {
  background-color: #adb5bd;
}

[data-bs-theme="light"] .table-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #868e96;
}

[data-bs-theme="dark"] .table-scroll {
  scrollbar-color: #6c757d transparent;
}

[data-bs-theme="dark"] .table-scroll::-webkit-scrollbar-thumb {
  background-color: #6c757d;
}

[data-bs-theme="dark"] .table-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #adb5bd;
}
