  /*
  body {
    font-family: sans-serif;
    margin: 40px;
  }
  */

  h1 {
    margin-bottom: 4px;
  }

  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    table-layout: fixed; /* predictable columns */
  }

  /* Header: no borders, just spacing */
  thead th {
    border: none;
    font-weight: bold;
    text-align: left;
    padding: 4px 6px;
  }

  /* Body rows: only bottom borders + taller rows */
  tbody td {
    border-bottom: 1px solid #000;
    padding: 14px 6px;
  }

  thead th:nth-child(1),
  tbody td:nth-child(1) {
    width: 44px;
    min-width: 44px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  /* 2nd = Last Name */
  thead th:nth-child(2),
  tbody td:nth-child(2) {
    width: 18%;
  }

  /* 3rd = First Name */
  thead th:nth-child(3),
  tbody td:nth-child(3) {
    width: 16%;
  }

  /* 4th = Role */
  thead th:nth-child(4),
  tbody td:nth-child(4) {
    width: 14%;
  }

  /* 5th = big Equipment area (rest of the space) */
  thead th:nth-child(5),
  tbody td:nth-child(5) {
    width: auto;
  }

 /* -------- Group print list (admin "Print Group List") -------- */

.group-print-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  table-layout: fixed;
}

/* Kill ALL borders inside this table */
.group-print-table th,
.group-print-table td {
  border: none !important;
  padding: 10px 6px;
}

/* Column sizing (these were already okay, just restating) */
.group-print-table .check-col {
  width: 3%;
  text-align: center;
}

.group-print-table .last-name-col {
  width: 14%;
  font-size: 16px;
  font-weight: 600;
}

.group-print-table .first-name-col {
  width: 14%;
  font-size: 16px;
  font-weight: 600;
}

.group-print-table .role-col {
  width: 8%;
}

/* Big gear column ~65% width, with the ONLY underline */
.group-print-table .equipment-col {
  width: 61%;
  border-bottom: 1px solid #000 !important;
}

/* 1. Remove header shading (no gray background) */
.group-print-table thead th {
  background: none !important;
  border: none !important;
}

/* 2. Remove the underline from the header cell specifically */
.group-print-table thead th.equipment-col {
  border-bottom: none !important;
}

/* 3. Increase row height for body rows only */
.group-print-table tbody td {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  font-size: 16px;
}

/* 4. Ensure ONLY the equipment column has an underline */
.group-print-table tbody td.equipment-col {
  border-bottom: 1px solid #000 !important;
}

.field-error {
  color: #b00020;
  font-size: 0.9rem;
  margin-top: 4px;
}

.facility-announcement {
  width: min(100%, 900px);
  margin: 0 auto 18px auto;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #f2b84b;
  background: linear-gradient(180deg, #fff7e0 0%, #fff1c2 100%);
  color: #5c3b00;
  box-shadow: 0 8px 24px rgba(92, 59, 0, 0.08);
}

.facility-announcement__title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.facility-announcement__body {
  line-height: 1.5;
}

.waivers-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-btn.active {
  font-weight: 700;
  text-decoration: underline;
}

.waiver-row-expired {
  background: #ffe6e6;
}

.waiver-row.expired {
  background: rgba(255, 0, 0, 0.08);
  border-left: 4px solid rgba(255, 0, 0, 0.65);
}

.waiver-badge-expired {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.12);
}

.status-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #444;
  padding: 4px 6px;
}

.status-btn:hover {
  text-decoration: underline;
}

.status-icon {
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.status-btn.active .status-icon {
  border-color: #222;
}

.status-btn.active .status-icon::after {
  content: "✓";
  color: #222;
  font-weight: bold;
}

.status-btn.active {
  color: #000;
  font-weight: 600;
}

/* Waivers admin toolbar/button refresh */
#section-waivers .toolbar,
#section-exceptions .toolbar,
#section-memberships .toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

#section-waivers .toolbar .toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  align-items: center;
}

#section-waivers .toolbar input[type="text"],
#section-exceptions .toolbar input[type="text"],
#section-memberships .toolbar input[type="text"] {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--waiv-gray-300, #c9d2db);
  border-radius: 10px;
  background: #fff;
  color: var(--waiv-gray-900, #1f2933);
}

#section-waivers #waiverSearch {
  width: min(460px, 44vw);
  min-width: 320px;
}

@media (max-width: 900px) {
  #section-waivers #waiverSearch {
    width: 100%;
    min-width: 0;
  }
}

#section-waivers .toolbar button:not(.status-btn),
#section-exceptions .toolbar button:not(.status-btn),
#section-memberships .toolbar button:not(.status-btn),
#section-waivers .toolbar .btn-link-like,
#section-exceptions .toolbar .btn-link-like,
#section-memberships .toolbar .btn-link-like {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #1f5f96;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--waiv-blue-600, #2c6aa8) 0%, var(--waiv-blue-700, #1e4f80) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 39, 66, 0.18);
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

#section-waivers .toolbar button:not(.status-btn):hover,
#section-exceptions .toolbar button:not(.status-btn):hover,
#section-memberships .toolbar button:not(.status-btn):hover,
#section-waivers .toolbar .btn-link-like:hover,
#section-exceptions .toolbar .btn-link-like:hover,
#section-memberships .toolbar .btn-link-like:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 39, 66, 0.24);
}

#section-waivers .toolbar button:not(.status-btn):disabled,
#section-exceptions .toolbar button:not(.status-btn):disabled,
#section-memberships .toolbar button:not(.status-btn):disabled {
  border-color: var(--waiv-gray-300, #c9d2db);
  background: linear-gradient(180deg, #e8edf2 0%, #dbe4ec 100%);
  color: #7a8794;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

#section-waivers .status-btn {
  border: 1px solid var(--waiv-gray-300, #c9d2db);
  border-radius: 999px;
  background: #fff;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--waiv-gray-900, #1f2933);
  text-decoration: none;
}

#section-waivers .status-btn:hover {
  background: var(--waiv-blue-100, #eaf3fb);
  text-decoration: none;
}

#section-waivers .status-btn.active {
  border-color: #1f5f96;
  background: linear-gradient(180deg, var(--waiv-blue-600, #2c6aa8) 0%, var(--waiv-blue-700, #1e4f80) 100%);
  color: #fff;
}

#section-waivers .status-btn.active .status-icon {
  border-color: rgba(255, 255, 255, 0.9);
}

#section-waivers .status-btn.active .status-icon::after {
  color: #fff;
}

#section-waivers .link-btn,
#section-exceptions .link-btn,
#section-memberships .link-btn {
  margin-left: 8px;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid var(--waiv-gray-300, #c9d2db);
  border-radius: 999px;
  background: #fff;
  color: var(--waiv-blue-900, #0f2742);
  cursor: pointer;
}

#section-waivers .link-btn:hover,
#section-exceptions .link-btn:hover,
#section-memberships .link-btn:hover {
  background: var(--waiv-blue-100, #eaf3fb);
}

/* Only style the waivers table — do NOT style generic table/td/th */
.waivers-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;           /* important: avoid “fixed” skinny columns */
}

.waivers-table th,
.waivers-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  vertical-align: top;
  white-space: nowrap;          /* keep most cells readable */
}

.waivers-table td.waiver-contact,
.waivers-table td.waiver-status {
  white-space: normal;          /* allow wrapping where it makes sense */
  word-break: normal;           /* prevents the vertical letter stacking */
  overflow-wrap: anywhere;
}

#section-waivers .waivers-table th:nth-child(2),
#section-waivers .waivers-table td:nth-child(2) {
  width: 110px;
}

#section-waivers .waivers-table th:nth-child(6),
#section-waivers .waivers-table td:nth-child(6) {
  width: 130px;
}

#section-waivers .waivers-table th:nth-child(7),
#section-waivers .waivers-table td:nth-child(7) {
  width: 170px;
}

#section-waivers .waivers-table th:nth-child(8),
#section-waivers .waivers-table td:nth-child(8) {
  width: 150px;
}

/* Expired row highlight */
.waivers-table tr.waiver-row-expired td {
  background: #fde8e8;
}

/* Expired badge */
.waiver-badge-expired {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #d33;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #b00000;
  margin-right: 6px;
}

/* Optional: make the “Expired” in the Select column muted */
.waiver-select-expired {
  color: #777;
  font-style: italic;
}

.waiver-help-note {
  font-size: 12px;
  color: #555;
}

.waiver-guardian-why {
  color: #b91f1f;
  margin: 6px 0 10px 0;
}

.waiver-signature-pad {
  border: 1px solid #ccc;
}

.waiver-status-pill {
  padding: 2px 8px;
  border-radius: 999px;
}

.waiver-status-pill-current {
  color: #166534;
  background: #dcfce7;
}

.waiver-status-pill-expired {
  color: #991b1b;
  background: #fee2e2;
}

.waiver-status-pill-flag {
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 600;
}

.waiver-status-pill-paper {
  color: #0f3f53;
  background: #dff4fb;
  border: 1px solid #8fcedf;
  font-weight: 600;
}

.waiver-status-pill-member {
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #86efac;
  font-weight: 600;
}

.waiver-age-warning {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #9a3412;
}

.btn-link-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.waiver-renew-box {
  border: 1px solid #ccc;
  padding: 12px;
  max-height: 300px;
  overflow-y: auto;
  white-space: normal;
}

.waiver-renew-form {
  margin-top: 16px;
}

.waiver-error-body {
  padding: 16px;
}

.waiver-group-separator-cell {
  border-top: 2px solid #ccc;
}

.waiver-checkmark-cell {
  width: 40px;
  text-align: center;
}

.waiver-checkmark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  font-weight: 700;
  line-height: 1;
}

.paid-status-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.paid-status-toggle-on {
  color: #166534;
  background: #dcfce7;
  border-color: #86efac;
}

.paid-status-toggle-off {
  color: #475569;
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.change-group-dialog {
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: 460px;
  width: 90vw;
}

.change-group-dialog-form {
  margin: 0;
  padding: 16px;
}

.change-group-dialog-title {
  margin: 0 0 8px 0;
}

.change-group-dialog-note {
  margin: 0 0 10px 0;
}

.change-group-dialog-select {
  width: 100%;
  margin-bottom: 12px;
}

.change-group-dialog-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.manager-override-dialog {
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 520px;
  width: 92vw;
}

.manager-override-form {
  margin: 0;
  padding: 16px;
}

.manager-override-title {
  margin: 0 0 8px 0;
}

.manager-override-note {
  margin: 0 0 12px 0;
  color: #555;
}

.manager-override-label {
  display: block;
  margin: 8px 0 4px 0;
  font-weight: 600;
}

.manager-override-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
}

.manager-override-error {
  margin: 8px 0 0 0;
  color: #991b1b;
}

.manager-override-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.waiver-read-page {
  font-family: sans-serif;
  margin: 20px;
}

.waiver-read-page .waiver-box {
  border: 1px solid #ccc;
  padding: 12px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 16px;
  white-space: normal;
}

.waiver-read-page button {
  padding: 6px 10px;
  cursor: pointer;
}

/* Customer waiver flow refresh */
body.waiver-customer-page {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 14px;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: clip;
  line-height: 1.45;
  color: var(--waiv-gray-900, #1f2933);
  background: linear-gradient(180deg, var(--waiv-blue-050, #f4f9ff) 0%, var(--waiv-blue-100, #eaf3fb) 240px, var(--waiv-white, #ffffff) 560px);
}

body.waiver-customer-page > h1,
body.waiver-customer-page > h2,
body.waiver-customer-page > p {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body.waiver-customer-page h1 {
  margin: 0 0 8px 0;
  color: var(--waiv-blue-900, #0f2742);
  font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  line-height: 1.2;
}

body.waiver-customer-page h2,
body.waiver-customer-page h3 {
  color: var(--waiv-blue-900, #0f2742);
  line-height: 1.25;
}

body.waiver-customer-page > h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 4.8vw, 1.45rem);
}

body.waiver-customer-page a {
  color: var(--waiv-blue-700, #1e4f80);
  font-weight: 600;
}

.waiver-customer-card {
  width: min(920px, 100%);
  max-width: 920px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid var(--waiv-gray-300, #c9d2db);
  border-radius: 14px;
  background: var(--waiv-white, #ffffff);
  box-shadow: 0 8px 18px rgba(15, 39, 66, 0.06);
  padding: 14px;
  text-align: center;
}

.facility-brand-logo-wrap {
  margin: 8px 0 12px 0;
}

.facility-brand-logo {
  display: block;
  max-width: min(280px, 100%);
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.waiver-choice-list {
  list-style: none;
  padding: 8px 0 4px 0;
  margin: 12px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.waiver-choice-list.waiver-customer-card {
  margin: 12px auto 10px;
}

.waiver-choice-list li {
  margin: 0;
  width: min(420px, 100%);
}

.waiver-choice-form {
  margin: 0;
  width: 100%;
}

body.waiver-customer-page form button,
body.waiver-customer-page .btn-link-like {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  border: 1px solid var(--waiv-blue-700, #1e4f80);
  background: var(--waiv-blue-700, #1e4f80);
  color: var(--waiv-white, #ffffff);
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

body.waiver-customer-page form button:hover,
body.waiver-customer-page .btn-link-like:hover {
  background: var(--waiv-blue-600, #2c6aa8);
}

.waiver-new-form,
.waiver-search-form,
.waiver-verify-form,
.waiver-renew-form {
  text-align: left;
}

.waiver-new-form label,
.waiver-search-form label,
.waiver-verify-form label,
.waiver-renew-form label {
  display: block;
  font-weight: 600;
  color: #0f2742;
  margin-top: 12px;
}

.waiver-new-form input:not([type="checkbox"]):not([type="radio"]),
.waiver-new-form select,
.waiver-new-form textarea,
.waiver-search-form input:not([type="checkbox"]):not([type="radio"]),
.waiver-verify-form input:not([type="checkbox"]):not([type="radio"]),
.waiver-renew-form input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  max-width: 100%;
  margin-top: 6px;
  border: 1px solid #c9d2db;
  border-radius: 10px;
  padding: 10px 12px;
  min-height: 42px;
  box-sizing: border-box;
  font: inherit;
  color: #1f2933;
  background: #ffffff;
}

.waiver-date-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  max-width: 100%;
}

.waiver-date-select {
  border: 1px solid #c9d2db;
  border-radius: 10px;
  padding: 10px 12px;
  background: #ffffff;
  color: #1f2933;
  font: inherit;
  min-height: 42px;
}

.waiver-date-month {
  flex: 1.4 1 180px;
}

.waiver-date-day {
  flex: 0.8 1 90px;
}

.waiver-date-year {
  flex: 1 1 120px;
}

.waiver-date-select:focus {
  outline: 2px solid #98c0e6;
  border-color: #7aa8d5;
}

.waiver-date-error {
  width: 100%;
  margin-top: 2px;
}

.waiver-new-form input:not([type="checkbox"]):not([type="radio"]):focus,
.waiver-new-form select:focus,
.waiver-new-form textarea:focus,
.waiver-search-form input:not([type="checkbox"]):not([type="radio"]):focus,
.waiver-verify-form input:not([type="checkbox"]):not([type="radio"]):focus,
.waiver-renew-form input:not([type="checkbox"]):not([type="radio"]):focus {
  outline: 2px solid #98c0e6;
  border-color: #7aa8d5;
}

.waiver-new-form label > input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0 8px 0 0;
  vertical-align: middle;
}

.waiver-new-form label:has(> input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.waiver-new-form > br,
.waiver-search-form > br,
.waiver-verify-form > br,
.waiver-renew-form > br {
  display: none;
}

.waiver-read-page .waiver-box,
.waiver-renew-box {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  border: 1px solid #c9d2db;
  border-radius: 12px;
  background: #ffffff;
  max-height: 320px;
  overflow-y: auto;
  line-height: 1.5;
  text-align: left;
}

.waiver-help-note {
  font-size: 13px;
  color: #4a5a6a;
  max-width: 920px;
  margin: 10px auto 0;
}

.waiver-signature-pad {
  display: block;
  width: 100%;
  max-width: 560px;
  border: 1px solid #c9d2db;
  border-radius: 10px;
  background: #ffffff;
  touch-action: none;
  margin-bottom: 12px;
}

.waiver-new-form #clearSignatureBtn {
  display: block;
  width: fit-content;
  min-width: 180px;
  margin: 0 0 12px 0;
}

.waiver-success-page .waiver-customer-card {
  margin-top: 8px;
  max-width: 720px;
}

.waiver-minor-count-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 8px;
  max-width: 640px;
}

.waiver-minor-count-form {
  margin: 0;
}

.waiver-minor-count-btn {
  width: 100%;
  min-height: 48px;
  font-size: 17px;
}

.waiver-minor-block {
  border: 1px solid #d6dee7;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  background: #f9fcff;
}

.waiver-minor-block h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #0f2742;
}

.waiver-start-page > h1,
.waiver-start-page > h2,
.waiver-start-page > p,
.waiver-landing-page .waiver-customer-card > h1,
.waiver-landing-page .waiver-customer-card > p,
.waiver-who-page > h1,
.waiver-who-page > h2,
.waiver-minor-count-page > h1,
.waiver-minor-count-page > h2,
.waiver-success-page > h1,
.waiver-success-page > p {
  text-align: center;
}

.waiver-start-page .waiver-customer-card,
.waiver-landing-page .waiver-customer-card,
.waiver-who-page .waiver-customer-card,
.waiver-minor-count-page .waiver-customer-card,
.waiver-success-page .waiver-customer-card {
  text-align: center;
}

.waiver-landing-page .waiver-choice-list,
.waiver-start-page .waiver-choice-list,
.waiver-who-page .waiver-choice-list {
  align-items: center;
}

.waiver-landing-page .waiver-choice-list li,
.waiver-start-page .waiver-choice-list li,
.waiver-who-page .waiver-choice-list li {
  max-width: 420px;
}

.waiver-read-page > h1,
.waiver-read-page > h2,
.waiver-read-page > .waiver-box,
.waiver-read-page > form {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.waiver-read-page > form {
  margin-top: 16px;
  text-align: center;
}

.waiver-read-page > form > p {
  margin: 0;
}

@media (min-width: 761px) {
  body.waiver-customer-page {
    padding: 20px;
  }

  .waiver-customer-card {
    padding: 18px;
  }

  .waiver-minor-count-grid {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
    gap: 10px;
  }

  body.waiver-customer-page form button,
  body.waiver-customer-page .btn-link-like {
    width: auto;
    min-width: 180px;
  }

  .waiver-choice-form button {
    width: 100%;
  }

  .waiver-landing-page .waiver-choice-list li,
  .waiver-start-page .waiver-choice-list li,
  .waiver-who-page .waiver-choice-list li {
    max-width: 360px;
  }

  .waiver-new-form button[type="submit"],
  .waiver-search-form button[type="submit"],
  .waiver-renew-form button[type="submit"],
  .waiver-verify-form button[type="submit"] {
    width: auto;
  }
}

@media (max-width: 760px) {
  .waiver-verify-form > div {
    padding: 8px 10px;
    border: 1px solid #d7e0e9;
    border-radius: 10px;
    margin-top: 8px;
  }

  .waiver-verify-form label {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
