.registration-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-form select {
  background: #fbfcfe;
  border: 1px solid #cfd7e3;
  border-radius: 11px;
  color: var(--ink);
  min-height: 52px;
  padding: 11px 14px;
  width: 100%;
}

.form-section {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 4px 0;
  padding: 20px;
}

.form-section legend {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 850;
  padding: 0 8px;
}

.privacy-check {
  align-items: flex-start !important;
  background: var(--paper);
  border-radius: 12px;
  display: flex !important;
  gap: 12px !important;
  padding: 15px;
}

.privacy-check input {
  accent-color: var(--navy);
  flex: 0 0 auto;
  margin-top: 3px;
  min-height: auto !important;
  width: auto !important;
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
}

[hidden] { display: none !important; }

.admin-flash,
.admin-warning {
  border-radius: 12px;
  margin: 0 0 22px;
  padding: 14px 17px;
}

.admin-flash {
  background: #e9f6ef;
  border: 1px solid #c9e9d9;
  color: #245d45;
}

.admin-warning {
  background: #fff7e5;
  border: 1px solid #efd79b;
  color: #725718;
  max-width: 980px;
}

.badge.draft {
  background: #eef2f8;
  color: #52627c;
}

.badge.archived {
  background: #f7ecec;
  color: #8b3b3b;
}

.table-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.table-actions form { margin: 0; }

.admin-link {
  background: transparent;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  font-size: .74rem;
  font-weight: 800;
  padding: 8px 10px;
}

.admin-link.archive-link { color: #8b3b3b; }
.admin-link.success-link { color: #226448; }

.current-poster {
  background: var(--paper);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 15px;
}

.current-poster span {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}

.current-poster img {
  border-radius: 10px;
  max-height: 280px;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-outline {
  background: transparent;
  border: 1px solid #cfd7e3;
  color: var(--navy);
}

.print-only { display: none; }

.report-title-row {
  gap: 24px;
  margin-top: 18px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.report-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
}

.report-summary div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 16px;
}

.report-summary dt {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.report-summary dd {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
  margin: 5px 0 0;
}

.report-table table { min-width: 1120px; }

.report-contact {
  overflow-wrap: anywhere;
}

.report-contact small {
  display: block;
  margin-top: 5px;
}

.admin-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 34px;
  text-align: center;
}

.admin-empty h2 {
  color: var(--navy);
  margin: 0 0 8px;
}

.admin-empty p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 760px) {
  .registration-grid { grid-template-columns: 1fr; }
  .form-section { padding: 17px 14px; }
  .report-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-actions { justify-content: flex-start; width: 100%; }
  .report-actions .button { width: 100%; }
}

@media print {
  @page { margin: 11mm; size: landscape; }

  body {
    background: #fff !important;
    color: #111 !important;
    font-size: 9pt;
  }

  .admin-sidebar,
  .session-note,
  .no-print {
    display: none !important;
  }

  .print-only { display: block !important; }

  .admin-shell { display: block !important; }

  .admin-content {
    min-width: 0 !important;
    padding: 0 !important;
  }

  .registration-report h1 {
    color: #0b214a !important;
    font-size: 22pt;
    margin: 0 0 4px;
  }

  .registration-report .admin-lead {
    color: #333 !important;
    font-size: 12pt;
    margin-bottom: 13px;
  }

  .report-organization {
    color: #0b214a;
    font-size: 8pt;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 9px;
    text-transform: uppercase;
  }

  .report-summary {
    gap: 7px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 12px;
  }

  .report-summary div {
    border-color: #bbb;
    border-radius: 0;
    padding: 7px 9px;
  }

  .report-summary dt { color: #444; font-size: 6.5pt; }
  .report-summary dd { color: #111; font-size: 8pt; margin-top: 2px; }

  .table-wrap {
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .report-table table {
    border-collapse: collapse;
    min-width: 0 !important;
    table-layout: fixed;
    width: 100% !important;
  }

  .report-table th,
  .report-table td {
    border: 1px solid #999 !important;
    color: #111 !important;
    font-size: 6.7pt !important;
    padding: 5px !important;
    vertical-align: top;
    word-break: break-word;
  }

  .report-table th { background: #e9edf3 !important; }
  .report-table tr { break-inside: avoid; }
  .report-table small { color: #333 !important; font-size: 6.3pt !important; }

  .report-generated {
    color: #555;
    font-size: 6.5pt;
    margin-top: 8px;
  }
}
0b214a;
    font-size: 8pt;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 9px;
    text-transform: uppercase;
  }

  .report-summary {
    gap: 7px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 12px;
  }

  .report-summary div {
    border-color: #bbb;
    border-radius: 0;
    padding: 7px 9px;
  }

  .report-summary dt { color: #444; font-size: 6.5pt; }
  .report-summary dd { color: #111; font-size: 8pt; margin-top: 2px; }

  .table-wrap {
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .report-table table {
    border-collapse: collapse;
    min-width: 0 !important;
    table-layout: fixed;
    width: 100% !important;
  }

  .report-table th,
  .report-table td {
    border: 1px solid #999 !important;
    color: #111 !important;
    font-size: 6.7pt !important;
    padding: 5px !important;
    vertical-align: top;
    word-break: break-word;
  }

  .report-table th { background: #e9edf3 !important; }
  .report-table tr { break-inside: avoid; }
  .report-table small { color: #333 !important; font-size: 6.3pt !important; }

  .report-generated {
    color: #555;
    font-size: 6.5pt;
    margin-top: 8px;
  }
}
