/* Tables Styles - La Remolatxa */

/* Table base */
.table {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.table th {
  font-weight: 600;
  color: #495057;
  background: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  vertical-align: middle;
  padding: 0.875rem 0.75rem;
}

.table td {
  padding: 0.875rem 0.75rem;
  border-color: #e9ecef;
  vertical-align: middle;
}

.table tbody tr:hover {
  background: var(--primary-alpha-03);
  transition: all 0.2s ease;
}

/* List groups */
.list-group {
  border-radius: 8px;
  overflow: hidden;
}

.list-group-item {
  border-radius: 0;
  padding: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.list-group-item:hover {
  background: rgba(154, 51, 108, 0.02);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.list-group-item:first-child {
  border-radius: 8px 8px 0 0;
}

.list-group-item:last-child {
  border-radius: 0 0 8px 8px;
}

/* People list */
.people-list {
  max-height: 300px;
  overflow-y: auto;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.people-list .card {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.people-list .card:hover {
  background: var(--primary-alpha-05);
  transform: translateY(-1px);
}

/* Table responsive */
.table-responsive {
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.table-responsive .table {
  margin-bottom: 0;
}

.table-responsive .table:last-child {
  border-bottom: 0;
}