/* Tablas amplias: permite revisar todas las columnas desde PC y móvil. */
.table-card {
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #2548b8 #e8edf8;
}

.table-card .data-table {
  min-width: 1500px;
}

.table-card::-webkit-scrollbar {
  height: 12px;
}

.table-card::-webkit-scrollbar-track {
  background: #e8edf8;
  border-radius: 999px;
}

.table-card::-webkit-scrollbar-thumb {
  background: #2548b8;
  border-radius: 999px;
}

@media (max-width: 620px) {
  .table-card .data-table {
    min-width: 1180px;
  }
}
