/* ============================================================
   STYLE – System zapisów na basen Level Up
   ============================================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #dbeafe;
  --accent:        #0d9488;
  --accent-light:  #ccfbf1;
  --bg:            #f0f5ff;
  --card-bg:       #ffffff;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --success:       #16a34a;
  --success-bg:    #dcfce7;
  --error:         #dc2626;
  --error-bg:      #fef2f2;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(37,99,235,0.10);
  --shadow-lg:     0 8px 40px rgba(37,99,235,0.14);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* --- Layout --- */
.page-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* --- Header --- */
.header {
  text-align: center;
  padding: 40px 0 32px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-decoration: none;
}
.header-logo svg {
  width: 32px; height: 32px;
}
.header h1 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

/* --- Cards --- */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Form Elements --- */
.form-group {
  margin-bottom: 18px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
label .required {
  color: var(--error);
  margin-left: 2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
input.error, select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-bg);
}

/* --- Custom Select --- */
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}
.select-wrapper select {
  padding-right: 36px;
}

/* --- Radio Group --- */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-option {
  flex: 1;
  min-width: 130px;
}
.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0;
}
.radio-option input:checked + label {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.radio-option label:hover {
  border-color: var(--primary);
}

/* --- Checkbox --- */
.checkbox-group { margin-top: 4px; }
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.checkbox-item:last-child { border-bottom: none; }
.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-item label {
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

/* --- Submit Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --- Success / Error Messages --- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.alert-success {
  display: block;
  background: var(--success-bg);
  color: #166534;
  border: 1px solid #86efac;
}
.user-code-box {
  background: #ffffff;
  border: 2px dashed #166534;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin: 12px 0;
}
.user-code-box span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #15803d;
  font-weight: 600;
  display: block;
}
.user-code-value {
  font-size: 24px;
  font-weight: 800;
  color: #166534;
  letter-spacing: 2px;
  font-family: monospace, sans-serif;
  margin-top: 4px;
}
.alert-error {
  display: block;
  background: var(--error-bg);
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.alert h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

/* --- Conditional fields (child data) --- */
.child-fields {
  display: none;
  padding-top: 4px;
}
.child-fields.visible {
  display: block;
}

/* --- Row layout --- */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* --- Loading spinner --- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 20px 0 10px;
  color: var(--text-light);
  font-size: 13px;
}
.footer a {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   ADMIN – panel zarządzania
   ============================================================ */
.admin-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.admin-header h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.admin-header .admin-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
.admin-header .admin-nav a,
.admin-header .admin-nav button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: background 0.2s;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-danger {
  background: var(--error);
  color: #fff;
}
.btn-danger:hover { background: #b91c1c; }

/* --- Admin table --- */
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td {
  background: #f8faff;
}
.admin-table .count-full {
  color: var(--success);
  font-weight: 700;
}
.admin-table .count-over {
  color: var(--error);
  font-weight: 700;
}
.admin-table .count-partial {
  color: var(--accent);
  font-weight: 600;
}

.limit-input {
  width: 70px;
  padding: 6px 8px;
  font-size: 14px;
  border: 2px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-family: var(--font);
}
.limit-input:focus {
  border-color: var(--primary);
  outline: none;
}
.btn-save-limit {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn-save-limit:hover { background: var(--primary-dark); }

/* --- Admin Login --- */
.login-card {
  max-width: 400px;
  margin: 60px auto;
}
.login-card h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

/* --- Tabs --- */
.admin-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  background: var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.admin-tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  color: var(--text-muted);
  transition: all 0.2s;
  text-align: center;
}
.admin-tab.active {
  background: var(--card-bg);
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.admin-tab:hover:not(.active) {
  color: var(--text);
}
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* --- Responsive --- */
@media (max-width: 640px) {
  .page-wrapper { padding: 16px 12px 40px; }
  .card { padding: 20px 16px; }
  .header h1 { font-size: 22px; }
  .row, .row-3 { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .radio-option { min-width: auto; width: 100%; }
  .admin-header { flex-direction: column; align-items: stretch; }
  .admin-header .admin-nav { justify-content: flex-end; }
  .admin-table {
    font-size: 13px;
  }
  .admin-table th,
  .admin-table td {
    padding: 8px 6px;
  }
}

/* ============================================================
   TOAST notification
   ============================================================ */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 380px;
}
.toast {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-success { background: var(--success); }
.toast-error { background: var(--error); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Loading state for slot select
   ============================================================ */
select.loading {
  opacity: 0.6;
  pointer-events: none;
}
.empty-state {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* --- Pool Schedule info --- */
.schedule-info {
  margin-top: 20px;
/* --- Schedule Info Component --- */
.schedule-info {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-radius: 12px;
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #0284c7;
}

.schedule-header h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
  letter-spacing: -0.2px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.schedule-day-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.schedule-day-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.schedule-day-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 6px;
  margin-bottom: 2px;
}

.schedule-time-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: all 0.15s ease-in-out;
}

.time-badge:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.time-badge.empty {
  background: #f1f5f9;
  color: #94a3b8;
  border-color: #e2e8f0;
  font-size: 12px;
  font-weight: 400;
}

/* --- Branded Logo Styling --- */
img.site-logo-img {
  max-width: 260px !important;
  width: 100% !important;
  height: auto !important;
  max-height: 75px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.05));
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  text-decoration: none;
}

/* --- Admin Login Screen --- */
.admin-login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 20px;
}

.login-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0f2fe;
  text-align: center;
}

.login-brand {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.admin-login-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  max-height: 85px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.login-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 44px !important;
  height: 48px;
  font-size: 15px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
}

.input-with-icon input:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.btn-block {
  width: 100%;
  height: 48px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease;
}

.btn-block:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.login-error-alert {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* --- Admin Header & Navigation --- */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-header-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

.admin-brand h1 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.admin-header-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.user-status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.btn-outline-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  color: #dc2626;
  border: 1.5px solid #fca5a5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-danger:hover {
  background: #fef2f2;
  border-color: #ef4444;
  color: #b91c1c;
}

/* --- Expandable Group Signups & Modern Buttons Styling --- */
button.btn-save-limit {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2) !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}

button.btn-save-limit:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35) !important;
}

button.btn-toggle-signups {
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: inherit !important;
}

button.btn-toggle-signups.has-signups {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border: 1.5px solid #93c5fd !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1) !important;
}

button.btn-toggle-signups.has-signups:hover {
  background: #dbeafe !important;
  border-color: #3b82f6 !important;
  color: #1e40af !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.18) !important;
}

button.btn-toggle-signups.empty-signups {
  background: #f8fafc !important;
  color: #64748b !important;
  border: 1.5px solid #e2e8f0 !important;
}

button.btn-toggle-signups.empty-signups:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #475569 !important;
}

.slot-details-row > td {
  background: #f1f5f9 !important;
  padding: 20px 24px !important;
  border-bottom: 2px solid #cbd5e1 !important;
}

.group-signups-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
  padding: 20px 24px !important;
  margin: 8px 0 !important;
}

.group-signups-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.group-signups-header h4 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  letter-spacing: -0.3px !important;
}

button.btn-export-group-csv {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}

button.btn-export-group-csv:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35) !important;
}

table.sub-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
}

table.sub-table th {
  background: #f1f5f9 !important;
  color: #334155 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 16px !important;
  border-bottom: 2px solid #cbd5e1 !important;
}

table.sub-table td {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 14px !important;
  color: #1e293b !important;
  background: #ffffff !important;
}

table.sub-table tr:hover td {
  background: #f8fafc !important;
}

.badge-child {
  background: #e0f2fe !important;
  color: #0369a1 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  display: inline-block !important;
}

.badge-adult {
  background: #fef3c7 !important;
  color: #b45309 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  display: inline-block !important;
}

.phone-link, .email-link {
  color: #0284c7 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.phone-link:hover, .email-link:hover {
  text-decoration: underline !important;
}

.empty-group-box {
  padding: 20px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px dashed #cbd5e1 !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: center !important;
}


