/* Club steward admin — field backdrop layout */

.rcs-club-admin-wrap {
  position: relative;
  z-index: 10;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px 56px;
}

.rcs-club-admin-wrap.rcs-club-admin-wrap--chart {
  max-width: 1380px;
}

.rcs-club-admin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.rcs-club-admin-head .rcs-club-admin-title {
  margin: 0;
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.rcs-club-admin-head .rcs-club-select {
  min-width: 220px;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font: inherit;
}

.rcs-club-admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.rcs-club-admin-billing {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .rcs-club-admin-billing {
  color: var(--rcs-muted, #475569);
  text-shadow: none;
}

.rcs-club-verify-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.rcs-club-verify-banner--action {
  border-color: rgba(221, 2, 6, 0.72);
  background: rgba(69, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.rcs-club-verify-banner--probation {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(6, 44, 28, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.rcs-club-verify-banner-copy {
  flex: 1 1 220px;
  min-width: 0;
}

.rcs-club-verify-banner-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #f8fafc;
}

.rcs-club-verify-banner-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.88);
}

.rcs-club-verify-banner-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

[data-theme="light"] .rcs-club-verify-banner {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .rcs-club-verify-banner--action {
  border-color: rgba(221, 2, 6, 0.25);
  background: #fff5f5;
}

[data-theme="light"] .rcs-club-verify-banner--probation {
  border-color: rgba(22, 163, 74, 0.35);
  background: #ecfdf5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .rcs-club-verify-banner-copy strong {
  color: #0f172a;
}

[data-theme="light"] .rcs-club-verify-banner-copy p {
  color: #334155;
}

[data-theme="dark"] .rcs-club-admin-head .rcs-club-select {
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.15);
}

.rcs-club-admin-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 920px) {
  .rcs-club-admin-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
  .rcs-club-admin-grid .rcs-card--wide {
    grid-column: 1 / -1;
  }
}

.rcs-club-admin-card-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rcs-club-admin-card-lead {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rcs-muted);
}

.rcs-club-admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.rcs-club-admin-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.06);
  color: var(--rcs-text);
}

[data-theme="dark"] .rcs-club-admin-stat {
  background: rgba(255, 255, 255, 0.08);
}

.rcs-club-admin-stat strong {
  font-size: 13px;
}

.rcs-club-admin-stat.pending {
  background: rgba(234, 179, 8, 0.18);
  color: #a16207;
}

[data-theme="dark"] .rcs-club-admin-stat.pending {
  color: #facc15;
}

.rcs-club-admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.rcs-club-admin-search {
  flex: 1 1 200px;
  min-width: 0;
}

.rcs-club-admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rcs-club-admin-tab {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--rcs-border);
  background: rgba(248, 250, 252, 0.7);
  color: var(--rcs-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rcs-club-admin-filter-tab {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--rcs-border);
  background: rgba(248, 250, 252, 0.7);
  color: var(--rcs-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

[data-theme="dark"] .rcs-club-admin-tab,
[data-theme="dark"] .rcs-club-admin-filter-tab {
  background: rgba(15, 23, 42, 0.55);
}

.rcs-club-admin-tab:hover,
.rcs-club-admin-filter-tab:hover {
  color: var(--rcs-text);
  border-color: var(--rcs-accent);
}

.rcs-club-admin-tab.active,
.rcs-club-admin-filter-tab.active {
  background: var(--rcs-accent-dim);
  border-color: var(--rcs-accent);
  color: var(--rcs-accent-text);
}

.rcs-club-admin-invite {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.rcs-club-admin-invite input {
  flex: 1 1 220px;
  min-width: 0;
}

.rcs-club-admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--rcs-border);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.55);
}

[data-theme="dark"] .rcs-club-admin-table-wrap {
  background: rgba(15, 23, 42, 0.45);
}

.rcs-club-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.rcs-club-admin-table col.col-pilot {
  width: 42%;
}

.rcs-club-admin-table col.col-status {
  width: 14%;
}

.rcs-club-admin-table col.col-since {
  width: 18%;
}

.rcs-club-admin-table col.col-actions {
  width: 26%;
}

.rcs-club-admin-table th,
.rcs-club-admin-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--rcs-border);
  vertical-align: middle;
}

.rcs-club-admin-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rcs-muted);
  background: rgba(15, 23, 42, 0.04);
  white-space: nowrap;
}

[data-theme="dark"] .rcs-club-admin-table th {
  background: rgba(255, 255, 255, 0.04);
}

.rcs-club-admin-table tr:last-child td {
  border-bottom: none;
}

.rcs-club-admin-table .member-email {
  display: block;
  font-size: 12px;
  color: var(--rcs-muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rcs-club-admin-table .member-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rcs-club-admin-table .member-date {
  font-size: 12px;
  color: var(--rcs-muted);
  white-space: nowrap;
}

.rcs-club-admin-table .member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  min-height: 28px;
}

.rcs-club-admin-table .member-actions--empty {
  justify-content: flex-end;
  color: var(--rcs-muted);
  font-size: 12px;
}

.rcs-club-admin-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--rcs-muted);
  font-size: 13px;
}

.rcs-club-admin-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  background: var(--rcs-pill-bg);
}

.rcs-club-admin-status.pending {
  background: rgba(234, 179, 8, 0.22);
  color: #a16207;
}

[data-theme="dark"] .rcs-club-admin-status.pending {
  color: #facc15;
}

.rcs-club-admin-status.active {
  background: var(--rcs-accent-dim);
  color: var(--rcs-accent-text);
}

.rcs-club-admin-status.invited {
  background: rgba(59, 130, 246, 0.18);
  color: #1d4ed8;
}

[data-theme="dark"] .rcs-club-admin-status.invited {
  color: #93c5fd;
}

.rcs-club-admin-status.removed,
.rcs-club-admin-status.left {
  background: rgba(148, 163, 184, 0.2);
  color: var(--rcs-muted);
}

.rcs-club-admin-flash {
  min-height: 18px;
  font-size: 13px;
  margin-top: 8px;
}

.rcs-club-admin-flash.ok { color: var(--rcs-success); }
.rcs-club-admin-flash.err { color: var(--rcs-error); }

.rcs-club-admin-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--rcs-accent-dim);
  color: var(--rcs-accent-text);
  margin-bottom: 12px;
}

.rcs-club-admin-map {
  height: 340px;
  border-radius: 14px;
  border: 1px solid var(--rcs-border);
  overflow: hidden;
  margin-bottom: 12px;
}

.rcs-club-admin-radius-row {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.rcs-club-admin-radius-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--rcs-text);
  margin: 0;
}

.rcs-club-admin-radius-row label span {
  font-weight: 700;
  color: var(--rcs-accent-text);
}

.rcs-club-admin-radius-row input[type="range"] {
  width: 100%;
  accent-color: var(--rcs-accent);
}

.rcs-club-admin-geo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .rcs-club-admin-table thead {
    display: none;
  }

  .rcs-club-admin-table,
  .rcs-club-admin-table tbody,
  .rcs-club-admin-table tr,
  .rcs-club-admin-table td {
    display: block;
    width: 100%;
  }

  .rcs-club-admin-table tr {
    padding: 12px;
    border-bottom: 1px solid var(--rcs-border);
  }

  .rcs-club-admin-table td {
    padding: 4px 0;
    border: none;
  }

  .rcs-club-admin-table td.member-actions {
    margin-top: 8px;
    justify-content: flex-start;
  }

  .rcs-club-admin-map {
    height: 280px;
  }
}

/* Section navigation */
.rcs-club-admin-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.rcs-club-admin-section-tab {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.rcs-club-admin-section-tab:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .rcs-club-admin-section-tab {
  background: rgba(17, 24, 39, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
  color: #f8fafc;
}

[data-theme="dark"] .rcs-club-admin-section-tab:hover {
  background: rgba(17, 24, 39, 0.96);
  border-color: rgba(255, 255, 255, 0.34);
}

.rcs-club-admin-section-tab.active {
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

[data-theme="dark"] .rcs-club-admin-section-tab.active {
  background: rgba(17, 24, 39, 0.92);
  color: #f8fafc;
}

.rcs-club-admin-section-tab__badge {
  display: inline-block;
  min-width: 1.35em;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #facc15;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  vertical-align: middle;
}

.rcs-club-admin-panel[hidden] {
  display: none !important;
}

.rcs-club-admin-grid--single {
  grid-template-columns: 1fr !important;
}

.rcs-club-admin-dash-loading {
  padding: 32px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Dashboard layout */
.ca-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 720px) {
  .ca-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ca-kpi {
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid var(--rcs-border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .ca-kpi {
  background: rgba(17, 24, 39, 0.9);
}

.ca-kpi.accent {
  border-color: var(--rcs-accent);
}

[data-theme="dark"] .ca-kpi.accent {
  border-color: var(--rcs-accent);
}

.ca-kpi.warn {
  border-color: rgba(234, 179, 8, 0.45);
  background: linear-gradient(145deg, rgba(234, 179, 8, 0.12), rgba(255, 255, 255, 0.94));
}

.ca-kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rcs-muted);
  margin-bottom: 6px;
}

.ca-kpi-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ca-kpi-sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--rcs-muted);
}

.ca-dash-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 960px) {
  .ca-dash-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
  .ca-dash-grid .ca-span-full {
    grid-column: 1 / -1;
  }
}

.ca-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rcs-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

[data-theme="dark"] .ca-card {
  background: rgba(17, 24, 39, 0.9);
}

.ca-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ca-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.ca-card-lead {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--rcs-muted);
  line-height: 1.45;
}

.ca-live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: ca-pulse 2s infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes ca-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ca-live-list {
  display: grid;
  gap: 10px;
}

.ca-live-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--rcs-border);
  background: rgba(248, 250, 252, 0.65);
}

[data-theme="dark"] .ca-live-item {
  background: rgba(15, 23, 42, 0.5);
}

.ca-live-item.anonymous .ca-live-name {
  color: var(--rcs-muted);
  font-style: italic;
}

.ca-live-name {
  font-weight: 700;
  font-size: 14px;
}

.ca-live-meta {
  font-size: 12px;
  color: var(--rcs-muted);
  margin-top: 2px;
}

.ca-live-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.ca-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--rcs-pill-bg);
  color: var(--rcs-muted);
}

.ca-badge.live {
  background: rgba(34, 197, 94, 0.18);
  color: #15803d;
}

[data-theme="dark"] .ca-badge.live {
  color: #86efac;
}

.ca-badge.log {
  background: rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
}

[data-theme="dark"] .ca-badge.log {
  color: #93c5fd;
}

.ca-empty {
  padding: 24px 12px;
  text-align: center;
  color: var(--rcs-muted);
  font-size: 13px;
}

.ca-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 132px;
  padding-top: 4px;
}

.ca-bar-chart--weather {
  height: 118px;
}

.ca-chart-summary {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--rcs-muted);
}

.ca-chart-subtitle {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rcs-text);
}

.ca-dual-charts {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .ca-dual-charts {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.ca-dual-chart {
  min-width: 0;
}

.ca-bar-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.ca-bar-val {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--rcs-text);
  margin-bottom: 4px;
  min-height: 12px;
}

.ca-bar-val.muted {
  color: var(--rcs-muted);
  font-weight: 500;
}

.ca-bar-track {
  flex: 1 1 auto;
  width: 100%;
  max-width: 28px;
  display: flex;
  align-items: flex-end;
  min-height: 72px;
}

.ca-bar-fill {
  width: 100%;
  border-radius: 6px 6px 2px 2px;
  background: var(--rcs-accent);
  opacity: 0.88;
  min-height: 0;
}

.ca-bar-fill.zero {
  opacity: 0.15;
  min-height: 2px;
}

.ca-bar-fill.alt {
  background: #3b82f6;
  opacity: 0.88;
}

.ca-bar-fill.warm {
  background: #f97316;
  opacity: 0.88;
}

.ca-bar-label {
  margin-top: 6px;
  font-size: 10px;
  color: var(--rcs-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ca-bar-value {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--rcs-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ca-weather-now {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 520px) {
  .ca-weather-now {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ca-weather-stat {
  padding: 12px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid var(--rcs-border);
}

[data-theme="dark"] .ca-weather-stat {
  background: rgba(15, 23, 42, 0.45);
}

.ca-weather-stat strong {
  display: block;
  font-size: 18px;
  margin-top: 4px;
}

.ca-weather-stat span {
  font-size: 11px;
  color: var(--rcs-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ca-top-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ca-top-table th,
.ca-top-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--rcs-border);
  text-align: left;
}

.ca-top-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rcs-muted);
}

.ca-top-table tr:last-child td {
  border-bottom: none;
}

.ca-top-table .anon {
  color: var(--rcs-muted);
  font-style: italic;
}

.ca-flight-list {
  display: grid;
  gap: 8px;
}

.ca-flight-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: rgba(248, 250, 252, 0.55);
  font-size: 13px;
}

[data-theme="dark"] .ca-flight-row {
  background: rgba(15, 23, 42, 0.45);
}

.ca-flight-row.active {
  border-color: rgba(59, 130, 246, 0.35);
}

.ca-dash-updated {
  font-size: 11px;
  color: var(--rcs-muted);
  text-align: right;
  margin-top: 12px;
}

/* Club profile editor */
.rcs-profile-row2 {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .rcs-profile-row2 { grid-template-columns: 1fr; }
}
.rcs-profile-sub {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 700;
}
.rcs-profile-checkgrid {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.rcs-profile-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
.rcs-profile-check input { width: auto; margin-top: 2px; flex-shrink: 0; }
.rcs-profile-tristate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: rgba(248, 250, 252, 0.5);
}
[data-theme="dark"] .rcs-profile-tristate {
  background: rgba(15, 23, 42, 0.45);
}
.rcs-profile-tristate select {
  min-width: 88px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--rcs-border);
  font: inherit;
  background: var(--rcs-input-bg, #fff);
}
.rcs-profile-savebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
#club-profile-form label {
  display: block;
  margin: 14px 0 6px;
  font-size: 13px;
  font-weight: 600;
}
.rcs-profile-plate-card {
  border: 2px solid var(--rcs-brand-red, #dd0206);
  box-shadow: inset 4px 0 0 var(--rcs-brand-red, #dd0206);
}

.rcs-profile-plate-card__head {
  margin: -4px -4px 8px;
  padding: 10px 12px 8px;
  background: color-mix(in srgb, var(--rcs-brand-red, #dd0206) 8%, transparent);
  border-radius: 10px 10px 0 0;
}

.rcs-profile-plate-card__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rcs-brand-red, #dd0206);
}

.rcs-profile-plate-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.rcs-profile-plate-card__title-row .rcs-club-admin-card-title {
  margin: 0;
}

.rcs-profile-plate-card__chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--rcs-brand-red, #dd0206);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rcs-profile-plate-card__head .rcs-club-admin-card-lead {
  margin: 8px 0 0;
}

.rcs-profile-notice,
.rcs-profile-notice-card {
  border: 2px solid color-mix(in srgb, #ca8a04 80%, var(--rcs-border));
  box-shadow: inset 4px 0 0 #ca8a04;
}

.rcs-profile-notice-card__head {
  margin: -4px -4px 8px;
  padding: 10px 12px 8px;
  background: color-mix(in srgb, #f5c400 16%, transparent);
  border-radius: 10px 10px 0 0;
}

.rcs-profile-notice-card__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a16207;
}

.rcs-profile-notice-card__chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ca8a04;
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rcs-profile-notice-card__head .rcs-club-admin-card-lead {
  margin: 8px 0 0;
}

.rcs-profile-plate-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
}

.rcs-profile-plate-card__actions .rcs-btn {
  margin-top: 0;
}

#club-profile-form input[type=text],
#club-profile-form input[type=url],
#club-profile-form input[type=email],
#club-profile-form input[type=tel],
#club-profile-form input[type=number],
#club-profile-form input[type=date],
#club-profile-form select,
#club-profile-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  font: inherit;
  background: var(--rcs-input-bg, #fff);
}
#club-profile-form .rcs-btn {
  margin-top: 8px;
}
.rcs-profile-event-form .rcs-btn,
.rcs-profile-event-actions .rcs-btn {
  padding: 10px 18px;
  min-height: 42px;
}
.rcs-profile-event-form .rcs-ev-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.rcs-profile-event-form .rcs-ev-tag-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 14px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-btn-bg);
  font-weight: 650;
  cursor: pointer;
}
.rcs-profile-event-form .rcs-profile-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  padding: 10px 12px;
  line-height: 1.4;
}
.rcs-profile-height-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.rcs-profile-height-row input {
  width: auto !important;
  max-width: 160px;
  margin-bottom: 0 !important;
}
.rcs-profile-height-unit {
  font-weight: 700;
  font-size: 13px;
}
.rcs-club-admin-profile-loading {
  padding: 24px;
  text-align: center;
  color: var(--rcs-muted);
}

#profile-error.rcs-club-admin-flash.err:not([hidden]) {
  display: block;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(254, 226, 226, 0.9);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

#profile-error.rcs-club-admin-flash.err[hidden] {
  display: none !important;
}

.rcs-map-lock-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.75);
  border: 1px solid var(--rcs-border);
}

[data-theme="dark"] .rcs-map-lock-bar {
  background: rgba(15, 23, 42, 0.55);
}

.rcs-map-lock-bar .rcs-hint {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.rcs-profile-runway-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--rcs-border);
  margin-bottom: 8px;
}

.rcs-profile-runway-name {
  margin: 0 0 4px;
  font-size: 15px;
}

.rcs-profile-runway-row label {
  font-size: 12px;
  font-weight: 600;
}

.rcs-profile-events-banner {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.rcs-profile-event-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--rcs-border);
}

.rcs-profile-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.rcs-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--rcs-btn-bg);
}

.ca-lounge-stack {
  display: grid;
  gap: 16px;
}

.ca-lounge-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 4px;
}

.ca-lounge-card-head .rcs-club-admin-card-title {
  margin: 0 0 6px;
}

.ca-lounge-card-head .rcs-club-admin-card-lead {
  margin: 0;
}

.ca-lounge-card-head .rcs-btn {
  flex: 0 0 auto;
  margin-top: 2px;
}

.ca-lounge-card-head__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.ca-lounge-card-head__actions .rcs-btn {
  margin-top: 0;
}

.ca-lounge-card-head--form {
  margin-bottom: 12px;
}

.ca-lounge-card-head__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.ca-lounge-templates-label {
  margin: 10px 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rcs-muted);
}

.ca-lounge-templates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.ca-lounge-template {
  position: relative;
  min-height: 44px;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-input-bg, var(--rcs-panel));
  color: var(--rcs-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ca-lounge-template--hazard {
  padding-top: 16px;
}

.ca-lounge-template--hazard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 9px 9px 0 0;
  background: repeating-linear-gradient(
    -45deg,
    #111 0,
    #111 8px,
    #facc15 8px,
    #facc15 16px
  );
}

.ca-lounge-template.is-active {
  border-color: var(--rcs-accent, #38bdf8);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--rcs-accent, #38bdf8) 35%, transparent);
}

.ca-lounge-toggles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 12px 0 4px;
}

.ca-lounge-toggles label {
  margin: 0;
}

.ca-lounge-toggles .ca-lounge-status-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--rcs-muted);
}

.ca-lounge-toggles select {
  width: auto;
  min-width: 140px;
  margin: 0;
}

@media (max-width: 640px) {
  .ca-lounge-card-head {
    flex-wrap: wrap;
  }

  .ca-lounge-card-head__actions {
    width: 100%;
  }

  .ca-lounge-card-head__actions .rcs-btn {
    flex: 1 1 auto;
  }

  .ca-lounge-card-head .rcs-btn {
    margin-left: 0;
  }

  .ca-lounge-templates {
    grid-template-columns: 1fr;
  }
}

.ca-lounge-drafts-title {
  margin: 20px 0 8px;
  font-size: 14px;
}

.ca-lounge-pic-open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.ca-lounge-pic-open img {
  display: block;
  width: 100%;
}

body.ca-post-detail-open {
  overflow-y: scroll;
}

.ca-post-detail {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  overflow: auto;
}

.ca-post-detail[hidden] {
  display: none !important;
}

.ca-post-detail__backdrop {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(6, 8, 10, 0.62);
}

.ca-post-detail__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: auto;
  padding: 20px 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-panel);
  color: var(--rcs-text);
}

.ca-post-detail__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--rcs-btn-bg);
  color: var(--rcs-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ca-post-detail__title {
  margin: 0 40px 8px 0;
  font-size: 20px;
}

.ca-post-detail__meta {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--rcs-muted);
}

.ca-post-detail__hero {
  display: block;
  max-width: 100%;
  max-height: 280px;
  margin: 0 0 12px;
  border-radius: 10px;
  object-fit: cover;
  cursor: zoom-in;
}

.ca-post-detail__body {
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.ca-lounge-news-form label {
  display: block;
  margin: 14px 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rcs-muted);
}

.ca-lounge-news-form input[type="text"],
.ca-lounge-news-form input[type="url"],
.ca-lounge-news-form textarea,
.ca-lounge-news-form select {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-input-bg);
  color: var(--rcs-text);
  font: inherit;
}

.ca-lounge-kind-hint {
  margin: 4px 0 12px;
  max-width: 52rem;
  line-height: 1.5;
}

.ca-lounge-kind-preview {
  height: 10px;
  margin: 8px 0 4px;
  border-radius: 4px;
  background: repeating-linear-gradient(
    -45deg,
    #111 0,
    #111 10px,
    #facc15 10px,
    #facc15 20px
  );
}

.ca-lounge-news-form--hazard {
  padding: 12px;
  border: 1px solid #facc15;
  border-radius: 12px;
}

.ca-lounge-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.ca-lounge-hero-preview {
  display: block;
  max-width: 100%;
  max-height: 160px;
  margin-top: 8px;
  border-radius: 10px;
  object-fit: cover;
}

.ca-lounge-news-items {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ca-lounge-news-item {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.ca-lounge-news-item.is-dragging {
  opacity: 0.55;
}

.ca-lounge-news-item__drag {
  flex: 0 0 32px;
  width: 32px;
  border: 1px solid var(--rcs-border);
  border-radius: 10px;
  background: var(--rcs-input-bg);
  color: var(--rcs-muted, #94a3b8);
  cursor: grab;
  font-size: 16px;
  line-height: 1;
}

.ca-lounge-news-item__drag:active {
  cursor: grabbing;
}

.ca-lounge-news-item__btn {
  flex: 1;
  width: auto;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-input-bg);
  color: var(--rcs-text);
  cursor: pointer;
  font: inherit;
}

.ca-lounge-news-item__btn:hover {
  border-color: var(--rcs-accent, #22c55e);
}

.ca-lounge-news-item__title {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.ca-lounge-news-item__meta {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--rcs-muted);
  text-transform: capitalize;
}

.ca-lounge-news-item__credit {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--rcs-muted);
}

.ca-lounge-news-item--hazard .ca-lounge-news-item__btn {
  border-color: #facc15;
  padding-top: 18px;
  background-image: repeating-linear-gradient(
    -45deg,
    #111 0,
    #111 8px,
    #facc15 8px,
    #facc15 16px
  );
  background-size: 100% 8px;
  background-repeat: no-repeat;
}

.ca-lounge-week-meta {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rcs-muted);
}

.ca-lounge-pic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

#lp-next-grid {
  grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
}

.ca-lounge-pic-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--rcs-input-bg);
}

.ca-lounge-pic-tile.is-selected {
  border-color: var(--rcs-accent, #22c55e);
  box-shadow: 0 0 0 1px var(--rcs-accent, #22c55e);
}

.ca-lounge-pic-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ca-lounge-pic-tile__foot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px 12px;
}

.ca-lounge-pic-tile__foot--queued {
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 10px;
}

.ca-lounge-pic-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.ca-lounge-pic-tile__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ca-lounge-pic-delete {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 6px 10px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.ca-lounge-pic-tile__cap,
.ca-lounge-pic-tile__sub,
.ca-lounge-pic-tile__status {
  display: block;
  font-size: 10px;
  line-height: 1.3;
}

.ca-lounge-pic-tile__cap {
  font-weight: 700;
  color: var(--rcs-text);
  padding: 0;
}

.ca-lounge-pic-tile__sub {
  color: var(--rcs-muted);
  padding: 0;
}

.ca-lounge-pic-tile__status {
  text-transform: capitalize;
  color: var(--rcs-muted);
  padding: 0;
}

/* Stewards tab */
.ca-steward-roster {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 720px) {
  .ca-steward-roster {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.ca-steward-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ca-steward-roster .ca-steward-card {
  margin-bottom: 0;
}

.ca-steward-card__meta {
  display: grid;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
}

.ca-steward-card__meta > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
}

.ca-steward-card__meta dt {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rcs-muted);
}

.ca-steward-card__meta dd {
  margin: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.ca-steward-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ca-steward-pending-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ca-steward-pending-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: color-mix(in srgb, var(--rcs-panel) 88%, transparent);
}

.ca-steward-pending-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ca-approvals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ca-approvals-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: color-mix(in srgb, var(--rcs-panel) 88%, transparent);
  color: inherit;
}

.ca-approvals-item--pending {
  border-color: color-mix(in srgb, #22c55e 50%, var(--rcs-border));
  box-shadow: inset 3px 0 0 #22c55e;
}

.ca-approvals-item--history {
  background: color-mix(in srgb, var(--rcs-bg) 35%, var(--rcs-panel));
  font: inherit;
  cursor: pointer;
  text-align: left;
}

button.ca-approvals-item--history:hover,
button.ca-approvals-item--history:focus-visible {
  border-color: var(--rcs-muted);
  outline: none;
}

.ca-approvals-item__main {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ca-approvals-item__main:focus-visible {
  outline: 2px solid var(--rcs-accent);
  outline-offset: 2px;
}

.ca-approvals-item__summary {
  margin: 6px 0 0;
  font-size: 14px;
}

.ca-approvals-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.ca-approvals-item__open {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--rcs-muted);
  padding-top: 2px;
}

.ca-approvals-pill {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ca-approvals-pill--need {
  background: rgba(34, 197, 94, 0.18);
  color: #15803d;
}

[data-theme="dark"] .ca-approvals-pill--need {
  color: #86efac;
}

.ca-approvals-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.ca-approvals-history {
  margin-top: 32px;
  padding: 16px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--rcs-border);
  background: color-mix(in srgb, var(--rcs-bg) 50%, transparent);
}

.ca-approvals-history__title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rcs-muted);
}

.ca-approvals-list--history {
  margin-top: 10px;
}

.ca-approvals-detail {
  display: grid;
  gap: 10px;
}

.ca-approvals-back {
  justify-self: start;
}

.ca-approvals-chip {
  display: inline-block;
  margin: 0;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--rcs-border);
  font-size: 12px;
  color: var(--rcs-muted);
}

.ca-approvals-detail__title,
.ca-approvals-review-title,
.ca-approvals-section {
  margin: 8px 0 0;
}

.ca-approvals-review {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.ca-approvals-kicker {
  margin: 8px 0 2px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rcs-muted);
}

.ca-approvals-pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--rcs-border);
  background: color-mix(in srgb, var(--rcs-bg) 40%, transparent);
  font-size: 14px;
}

.ca-approvals-diff {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ca-approvals-diff th,
.ca-approvals-diff td {
  vertical-align: top;
  text-align: left;
  padding: 8px 10px 8px 0;
  border-bottom: 1px solid var(--rcs-border);
}

.ca-approvals-diff th {
  width: 28%;
  font-weight: 600;
}

.ca-approvals-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.ca-approvals-photo {
  margin: 0;
}

.ca-approvals-photo-open {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
}

.ca-approvals-photo-open:focus-visible {
  outline: 2px solid var(--rcs-accent, #22c55e);
  outline-offset: 2px;
}

.ca-approvals-photo img,
.ca-approvals-photo-open img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  background: var(--rcs-panel);
}

.ca-approvals-photo-open img {
  transition: transform 0.18s ease;
}

.ca-approvals-photo-open:hover img,
.ca-approvals-photo-open:focus-visible img {
  transform: scale(1.02);
}

.ca-approvals-photo-zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.72);
  pointer-events: none;
}

.ca-approvals-photo figcaption {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  font-size: 13px;
}

body.ca-approvals-lightbox-open {
  overflow-y: scroll;
}

.ca-approvals-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.ca-approvals-lightbox[hidden] {
  display: none !important;
}

.ca-approvals-lightbox-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(3, 7, 18, 0.92);
  cursor: zoom-out;
}

.ca-approvals-lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  max-height: 100%;
}

.ca-approvals-lightbox-figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: min(96vw, 1400px);
}

.ca-approvals-lightbox-img {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: min(82vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  background: #000;
}

.ca-approvals-lightbox-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  color: #e2e8f0;
  font-size: 14px;
  max-width: min(92vw, 720px);
}

.ca-approvals-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.ca-approvals-lightbox-close:hover {
  background: #fff;
}

.ca-approvals-lightbox-close:focus-visible,
.ca-approvals-lightbox-nav:focus-visible {
  outline: 2px solid var(--rcs-accent, #22c55e);
  outline-offset: 2px;
}

.ca-approvals-lightbox-nav {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.ca-approvals-lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 700px) {
  .ca-approvals-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .ca-approvals-lightbox-nav--prev {
    left: 4px;
  }

  .ca-approvals-lightbox-nav--next {
    right: 4px;
  }

  .ca-approvals-lightbox-img {
    max-height: 72vh;
  }
}

.ca-approvals-pin-map {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: 1px solid var(--rcs-border);
  overflow: hidden;
}

.ca-approvals-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rcs-border);
}

.rcs-club-verify-wrap .rcs-card {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .rcs-club-verify-wrap .rcs-card {
  background: rgba(17, 24, 39, 0.97);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.rcs-club-verify-wrap .rcs-card.verify-panel-muted {
  opacity: 1;
  border-style: dashed;
  border-color: rgba(34, 197, 94, 0.42);
}

.rcs-club-verify-sub {
  display: block;
  width: fit-content;
  max-width: min(100%, 40rem);
  margin: 0 auto 20px;
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #f8fafc;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .rcs-club-verify-page .rcs-club-verify-sub {
  color: #0f172a;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.1);
}

.verify-steward-email {
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
}

.ca-moderators {
  margin-top: 28px;
  padding-top: 8px;
}

.ca-moderator-list,
.ca-moderator-eligible {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ca-moderator-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--rcs-border);
  border-radius: 10px;
  background: var(--rcs-input-bg);
}

.ca-moderator-search-label {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
}

