/* Generic list page styles (reusable across the system) */

.list-page-container {
  padding-top: 8px;
}

.list-table {
  border-collapse: separate;
  border-spacing: 0 6px; /* slightly tighter rows */
  font-size: 0.96rem;
}

.list-table thead th {
  background: transparent;
  border: none;
  color: #333;
  font-weight: 600;
}

.list-table tbody tr {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
}

.list-table tbody tr td {
  vertical-align: middle;
  padding: 10px 12px; /* reduced padding for compactness */
}

.list-table tbody tr:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Optional modifier: even more compact layout when applied to the table */
.list-table--compact {
  border-spacing: 0 4px;
  font-size: 0.92rem;
}
.list-table--compact tbody tr td {
  padding: 8px 10px;
}

/* Compact actions column */
.list-table .dropdown {
  display: inline-block;
}

/* Empty state accent */
.list-empty {
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  padding: 24px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .list-table tbody tr td { padding: 10px 8px; }
  .context-panel__title { font-size: 1rem; }
}
