/* ============================================================
   EMANTOURS CRM — COMPONENTS CSS
   Buttons, Cards, Forms, Tables, Badges, Modals, Empty States
   ============================================================ */

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
  text-decoration: none;
}

.btn svg { width: 15px; height: 15px; }

/* Primary */
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary */
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: #e2e8f0;
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { background: var(--bg-hover); border-color: var(--blue-300); color: var(--blue-700); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-hover); color: var(--text-primary); }

/* Danger */
.btn-danger {
  background: var(--gradient-danger);
  color: #fff;
  border-color: transparent;
}
.btn-danger:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(239,68,68,0.35); }

/* Success */
.btn-success {
  background: var(--gradient-success);
  color: #fff;
  border-color: transparent;
}
.btn-success:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,185,129,0.35); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-300);
}
.btn-outline:hover { background: var(--blue-50); }

/* Small / Large */
.btn-sm { padding: 6px 12px; font-size: var(--fs-xs); border-radius: var(--radius-sm); }
.btn-lg { padding: 12px 26px; font-size: var(--fs-md); border-radius: var(--radius-lg); }

/* Icon only */
.btn-icon {
  padding: 8px;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}

.card:hover { box-shadow: var(--shadow-lg); }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.card-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

.card-body { padding: var(--sp-6); }
.card-footer {
  padding: var(--sp-4) var(--sp-6);
  background: var(--bg-app);
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-3);
}

/* Stat cards */
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-card.blue::before   { background: var(--gradient-primary); }
.stat-card.green::before  { background: var(--gradient-success); }
.stat-card.orange::before { background: var(--gradient-warning); }
.stat-card.red::before    { background: var(--gradient-danger); }

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-icon.blue   { background: var(--blue-100); color: var(--blue-700); }
.stat-icon.green  { background: var(--success-light); color: var(--success); }
.stat-icon.orange { background: var(--warning-light); color: var(--warning); }
.stat-icon.red    { background: var(--danger-light); color: var(--danger); }

.stat-content { flex: 1; }
.stat-value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-change { font-size: var(--fs-xs); font-weight: 600; margin-top: 6px; }
.stat-change.up   { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* ==========================================
   FORMS
   ========================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-label .required {
  color: var(--danger);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: var(--fs-md);
  color: var(--text-primary);
  transition: all var(--t-fast);
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:hover { border-color: var(--blue-300); }
.form-control:focus { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-control.error { border-color: var(--danger); background: #fff5f5; }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 90px; line-height: 1.5; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }

.form-hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }
.form-error { font-size: var(--fs-xs); color: var(--danger); margin-top: 2px; font-weight: 500; }

.form-grid { display: grid; gap: var(--sp-5); }
.form-grid-2 { grid-template-columns: repeat(2, 1fr); }
.form-grid-3 { grid-template-columns: repeat(3, 1fr); }
.form-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Form section */
.form-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  margin-bottom: var(--sp-5);
}

.form-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  background: var(--blue-50);
  border-bottom: 1.5px solid var(--blue-100);
}

.form-section-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--blue-800);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.form-section-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-section-body { padding: var(--sp-6); }

/* ==========================================
   BADGES
   ========================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.badge-blue    { background: var(--blue-100);     color: var(--blue-800); }
.badge-green   { background: var(--success-light); color: var(--success-text); }
.badge-orange  { background: var(--warning-light); color: var(--warning-text); }
.badge-red     { background: var(--danger-light);  color: var(--danger-text); }
.badge-gray    { background: #f1f5f9;              color: var(--text-secondary); }
.badge-purple  { background: #ede9fe;              color: #5b21b6; }

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Tag badges (no dot, smaller) */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  background: var(--blue-100);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  gap: 4px;
}

.tag-remove {
  cursor: pointer;
  opacity: 0.6;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.tag-remove:hover { opacity: 1; color: var(--danger); }

.tags-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: 8px 12px;
  background: var(--bg-input);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  min-height: 44px;
  cursor: text;
  transition: all var(--t-fast);
}
.tags-input-wrapper:focus-within { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.tags-input-wrapper input { border: none; background: transparent; flex: 1; min-width: 120px; font-size: var(--fs-md); color: var(--text-primary); }
.tags-input-wrapper input:focus { outline: none; }

/* ==========================================
   TABLES
   ========================================== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

table, .data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: var(--fs-sm);
}

.data-table thead tr {
  background: var(--blue-900);
}

.data-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--blue-200);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--t-fast);
}

.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--blue-50); }

.data-table tbody td {
  padding: 12px 16px;
  color: var(--text-primary);
  vertical-align: middle;
}

.data-table tbody td.muted { color: var(--text-muted); }
.data-table tbody td.mono { font-family: 'Courier New', monospace; font-size: 12px; }

/* Table actions column */
.td-actions { display: flex; align-items: center; gap: var(--sp-2); }

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  background: transparent;
}

.action-btn.edit   { color: var(--blue-600); }
.action-btn.edit:hover   { background: var(--blue-100); }
.action-btn.delete { color: var(--danger); }
.action-btn.delete:hover { background: var(--danger-light); }
.action-btn.view   { color: var(--success); }
.action-btn.view:hover   { background: var(--success-light); }

/* ==========================================
   MODULE HEADER
   ========================================== */
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.module-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.module-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

.module-actions { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }

/* ==========================================
   SEARCH BAR
   ========================================== */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--bg-card);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  transition: all var(--t-fast);
  min-width: 260px;
}

.search-bar:focus-within { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.search-bar svg { color: var(--text-muted); flex-shrink: 0; }
.search-bar input { border: none; background: transparent; flex: 1; font-size: var(--fs-sm); color: var(--text-primary); }
.search-bar input::placeholder { color: var(--text-muted); }

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: var(--sp-5);
}

.empty-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.empty-desc {
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  max-width: 360px;
}

/* ==========================================
   PANEL / SIDE PANEL (Form view)
   ========================================== */
.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(680px, 100vw);
  height: 100vh;
  background: var(--bg-card);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transition: right var(--t-slow);
  overflow: hidden;
}

.side-panel.open { right: 0; }

.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 499;
  display: none;
  backdrop-filter: blur(3px);
}

.side-panel-overlay.active { display: block; }

.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: var(--gradient-primary);
  color: #fff;
  flex-shrink: 0;
}

.side-panel-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.side-panel-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--t-fast);
}

.side-panel-close:hover { background: rgba(255,255,255,0.25); }

.side-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
}

.side-panel-footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-3);
  background: var(--bg-app);
  flex-shrink: 0;
}

/* ==========================================
   FULL PAGE FORM (for Reservas)
   ========================================== */
.page-form-wrapper {
  animation: fadeIn 0.25s ease forwards;
}

.page-form-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

/* ==========================================
   TAB BAR
   ========================================== */
.tab-bar {
  display: flex;
  gap: 2px;
  background: var(--bg-app);
  border-radius: var(--radius-lg);
  padding: 4px;
  margin-bottom: var(--sp-5);
}

.tab-item {
  flex: 1;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font);
  white-space: nowrap;
}

.tab-item.active {
  background: var(--bg-card);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

/* ==========================================
   DYNAMIC LIST ITEM (passengers, flights)
   ========================================== */
.dynamic-item {
  background: var(--bg-app);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
  position: relative;
  transition: border-color var(--t-fast);
}

.dynamic-item:hover { border-color: var(--blue-300); }

.dynamic-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.dynamic-item-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--blue-700);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.dynamic-item-num {
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.remove-item-btn {
  color: var(--danger);
  background: var(--danger-light);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.remove-item-btn:hover { background: var(--danger); color: #fff; }

.add-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 10px;
  border: 2px dashed var(--blue-200);
  border-radius: var(--radius-lg);
  color: var(--blue-500);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  background: transparent;
  font-family: var(--font);
}
.add-item-btn:hover { border-color: var(--blue-500); background: var(--blue-50); color: var(--blue-700); }

/* ==========================================
   DIVIDER
   ========================================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
  margin: var(--sp-5) 0;
}

/* ==========================================
   TOGGLE / CHECKBOX / RADIO
   ========================================== */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-600);
  cursor: pointer;
}

.form-check-label { font-size: var(--fs-md); color: var(--text-primary); cursor: pointer; }

/* Segmented control (radio group horizontal) */
.seg-control {
  display: flex;
  background: var(--bg-app);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}

.seg-item {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  background: transparent;
  font-family: var(--font);
}

.seg-item.active {
  background: var(--bg-card);
  color: var(--blue-700);
  box-shadow: var(--shadow-xs);
}

/* ==========================================
   SUMMARY / LIQUIDATION BOX
   ========================================== */
.liq-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.liq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--sp-6);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: var(--fs-md);
}

.liq-row:last-child { border-bottom: none; }
.liq-row.total {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  font-size: var(--fs-xl);
}
.liq-row.ganancia {
  background: var(--success-light);
  color: var(--success-text);
  font-weight: 800;
  font-size: var(--fs-lg);
}
.liq-row.costo { color: var(--danger-text); }

.liq-label { font-weight: 500; }
.liq-value { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ==========================================
   TOOLTIP
   ========================================== */
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: #fff;
  font-size: var(--fs-xs);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
[data-tooltip]:hover::after { opacity: 1; }

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.page-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  border: 1.5px solid transparent;
  color: var(--text-secondary);
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
}

.page-btn:hover { border-color: var(--blue-300); color: var(--blue-700); }
.page-btn.active { background: var(--gradient-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
  .form-grid-2, .form-grid-3, .form-grid-4 { grid-template-columns: 1fr; }
  .module-header { flex-direction: column; align-items: flex-start; }
  .module-actions { width: 100%; }
  .search-bar { min-width: unset; width: 100%; }
  .tab-bar { overflow-x: auto; }
  .tab-item { flex: none; }
  .side-panel { width: 100vw; }
  .liq-row { padding: 10px var(--sp-4); }
  .stat-value { font-size: var(--fs-2xl); }
}

@media (max-width: 480px) {
  .btn { padding: 8px 14px; }
  .btn-lg { padding: 10px 18px; }
  .card-header, .card-body { padding: var(--sp-4); }
  .form-section-body { padding: var(--sp-4); }
}

/* Collapsible Sections */
.form-section-header { cursor: pointer; user-select: none; position: relative; }
.form-section.collapsed .form-section-body { display: none; }
.collapse-icon { transition: transform 0.3s; margin-left: auto; }
.form-section.collapsed .collapse-icon { transform: rotate(-90deg); }
.section-check { color: var(--green-600); margin-left: 10px; display: none; }
.form-section.is-valid .section-check { display: inline-flex; }
.pax-header { cursor: pointer; user-select: none; }
.pax-card.collapsed .pax-body { display: none; }
.pax-card.collapsed .collapse-icon { transform: rotate(-90deg); }
.pax-card.is-valid .section-check { display: inline-flex; }
