
.catalog-table {
  font-size: 0.9rem;
}

.catalog-table td {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-table .description-col {
  max-width: 300px;
}

.badge-list {
  max-width: 150px;
  overflow: hidden;
}

.table-controls {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #f8f9fa;
}

.sort-header {
  cursor: pointer;
  user-select: none;
}

.sort-header:hover {
  background-color: #e9ecef;
} 

/* Grey background for code section */
.alert-info pre {
  background-color: #f8f9fa;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
}

.alert-info code {
  background-color: transparent;
  color: #212529;
}

/* Make the modal wider on large screens - we want the extra space, it has a lot
of detail*/
.modal-xl-responsive {
  max-width: 95vw;
}

@media (min-width: 1200px) {
  .modal-xl-responsive {
    max-width: 90%;
  }
}

@media (min-width: 1400px) {
  .modal-xl-responsive {
    max-width: 85%;
  }
}

/* ESM Datastore stuff */ 
.datastore-info {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.filter-section {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.table-container {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.badge-list {
    max-height: 100px;
    overflow-y: auto;
}

.badge-list .badge {
    margin-right: 2px;
    margin-bottom: 2px;
}

td .small {
    max-height: 120px;
    overflow-y: auto;
}