:root {
  --primary: #0b6e6e;
  --primary-dark: #075353;
  --accent: #1e88a8;
  --danger: #c0392b;
  --warning: #e67e22;
  --bg: #f4f7f8;
  --card: #ffffff;
  --text: #1f2d2d;
  --muted: #5f7373;
  --border: #e0e6e6;
  --radius: 12px;
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); }

.container { max-width: 880px; margin: 0 auto; padding: 16px; }

.topbar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 18px 16px; text-align: center;
}
.topbar .logo { font-size: 22px; font-weight: 700; letter-spacing: 0.5px; }
.topbar .sub { font-size: 13px; opacity: 0.9; margin-top: 4px; }

.card {
  background: var(--card); border-radius: var(--radius); padding: 18px;
  margin-bottom: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.section-title {
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
  margin: 0 0 10px; display: flex; align-items: center; gap: 8px;
}

.emergency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 480px) { .emergency-grid { grid-template-columns: repeat(4, 1fr); } }
.emergency-card {
  border-radius: 10px; padding: 12px; text-align: center; color: #fff; font-weight: 600;
}
.emergency-card .num { font-size: 22px; font-weight: 800; display: block; margin-top: 4px; }
.emergency-card small { display:block; font-weight:500; opacity:.9; margin-top:2px; }
.ec-ambulance { background: #c0392b; }
.ec-civildefense { background: #e67e22; }
.ec-police { background: #1e5aa8; }
.ec-hse { background: #0b6e6e; }

.fire-box { border-left: 5px solid var(--danger); }
.gear-box { border-left: 5px solid var(--accent); }
.hazard-box { border-left: 5px solid var(--warning); }
.rules-box { border-left: 5px solid var(--primary); }

ul.plain { margin: 0; padding-left: 20px; }
ul.plain li { margin-bottom: 6px; line-height: 1.4; }

.btn {
  display: inline-block; padding: 12px 20px; border-radius: 8px; border: none;
  font-weight: 700; font-size: 15px; cursor: pointer; text-align:center; width: 100%;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:disabled { background: #9db8b8; cursor: not-allowed; }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-row { display:flex; gap: 10px; }

.form-group { margin-bottom: 14px; }
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
label .req { color: var(--danger); }
input[type=text], input[type=email], input[type=tel], select {
  width: 100%; padding: 11px 12px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 15px; background: #fff;
}
input:focus, select:focus { outline: none; border-color: var(--accent); }
.hint { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.error-text { font-size: 12.5px; color: var(--danger); margin-top: 4px; font-weight: 600; }
.suggest-btn { background:#fff3cd; border:1px solid #ffe08a; padding:6px 10px; border-radius:6px; font-size:13px; margin-top:6px; cursor:pointer; display:inline-block; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.checkbox-row input { margin-top: 3px; width:18px; height:18px; }
.checkbox-row .label-small { font-size: 13px; line-height: 1.4; color: var(--text); }

.badge-preview {
  width: 100%; max-width: 340px; margin: 0 auto; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px; padding: 4px; color: #fff;
}
.badge-inner { background: #fff; color: var(--text); border-radius: 12px; padding: 16px; text-align: center; }
.badge-inner h3 { margin: 8px 0 2px; }
.badge-tag { display:inline-block; background: var(--primary); color:#fff; font-size:11px; font-weight:700; padding:3px 10px; border-radius: 20px; letter-spacing: 0.5px; margin-bottom:8px;}
.badge-field { text-align:left; font-size:13px; padding: 3px 0; border-bottom: 1px dashed var(--border); }
.badge-field b { color: var(--muted); font-weight:600; }

.center { text-align: center; }
.mt { margin-top: 16px; }
.mb0 { margin-bottom: 0; }
.small { font-size: 12.5px; color: var(--muted); }

.thankyou { text-align:center; padding: 30px 16px; }
.thankyou .check { font-size: 56px; }
.thankyou h2 { color: var(--primary); margin-top: 6px; }

/* ---- Admin ---- */
.admin-shell { display: flex; min-height: 100vh; }
.sidebar { width: 220px; background: var(--primary-dark); color: #fff; flex-shrink: 0; }
.sidebar .brand { padding: 18px 16px; font-weight: 800; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.15); }
.sidebar nav a {
  display: block; padding: 12px 16px; color: #d7e6e6; text-decoration: none; font-size: 14px; cursor:pointer;
  border-left: 4px solid transparent;
}
.sidebar nav a:hover, .sidebar nav a.active { background: rgba(255,255,255,.08); border-left-color: #fff; color: #fff; }
.admin-main { flex: 1; padding: 24px; max-width: 1100px; }
.admin-topbar { display:flex; justify-content: space-between; align-items:center; margin-bottom: 20px; }
.kpi-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; margin-bottom: 20px; }
.kpi-card { background:#fff; border-radius: var(--radius); padding: 16px; border:1px solid var(--border); }
.kpi-card .val { font-size: 28px; font-weight: 800; color: var(--primary-dark); }
.kpi-card .lbl { font-size: 13px; color: var(--muted); font-weight:600; }

table { width: 100%; border-collapse: collapse; font-size: 14px; background:#fff; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
th { background: #eef4f4; font-weight: 700; }
.tag { display:inline-block; padding:2px 8px; border-radius: 12px; font-size: 11.5px; font-weight:700; }
.tag-green { background:#e0f5e9; color:#1a7f4e; }
.tag-amber { background:#fff2df; color:#a85d00; }
.tag-blue { background:#e2f0fb; color:#1361a8; }

.login-wrap { min-height: 100vh; display:flex; align-items:center; justify-content:center; background: var(--bg); }
.login-card { width: 340px; background:#fff; border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 18px rgba(0,0,0,.08); }

@media print {
  .no-print { display: none !important; }
}

/* ---- A4 printable badge (4-quadrant fold layout) ---- */
.a4-page {
  width: 210mm; min-height: 297mm; margin: 0 auto; background: #fff;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  box-sizing: border-box;
}
.a4-quadrant { padding: 10mm; box-sizing: border-box; position: relative; }
.a4-quadrant.tl { border-right: 1px dashed #cbd5e1; border-bottom: 1px dashed #cbd5e1; }
.a4-quadrant.tr { border-bottom: 1px dashed #cbd5e1; }
.a4-quadrant.bl { border-right: 1px dashed #cbd5e1; }

.a4-fold-num { position:absolute; top:4px; right:8px; font-size:9px; color:#cbd5e1; }

.a4-ec-row { display:flex; gap:6px; margin-bottom:8px; }
.a4-ec-box { flex:1; border:1.5px solid; border-radius:8px; text-align:center; padding:6px 2px; }
.a4-ec-box .n { font-size:19px; font-weight:800; }
.a4-ec-box .l { font-size:9px; font-weight:600; }
.a4-ec-amb { border-color:#dc2626; } .a4-ec-amb .n{color:#dc2626;}
.a4-ec-civ { border-color:#ea580c; } .a4-ec-civ .n{color:#ea580c;}
.a4-ec-pol { border-color:#1d4ed8; } .a4-ec-pol .n{color:#1d4ed8;}

.a4-info-box { border:1.5px solid; border-radius:8px; padding:7px 9px; margin-bottom:7px; font-size:10.5px; }
.a4-info-box .t { font-weight:700; margin-bottom:2px; }
.a4-hse { border-color:#d97706; color:#78350f; }
.a4-hse .n { font-size:14px; font-weight:800; color:#b45309; }
.a4-assembly { border-color:#16a34a; color:#14532d; }
.a4-policy { border-color:#94a3b8; color:#334155; }

.a4-section-title { display:flex; align-items:center; gap:6px; font-weight:800; font-size:11.5px; margin:9px 0 3px; }
.a4-section-title .ic { width:13px; height:13px; }
.a4-section-sub { font-size:8.5px; color:#64748b; margin:0 0 8px; }

.a4-icon-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:6px 4px; }
.a4-icon-grid.cols3 { grid-template-columns:repeat(3, 1fr); }
.a4-icon-item { display:flex; flex-direction:column; align-items:center; text-align:center; }
.a4-icon-item .badge { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; border:2px solid #111827; }
.a4-icon-item .badge.sq { border-radius:8px; position:relative; border:none; }
.a4-icon-item .badge .fnum { position:absolute; top:-5px; left:-5px; width:12px; height:12px; border-radius:50%; background:#dc2626; color:#fff; font-size:7px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.a4-icon-item .tri-wrap-sm { width:38px; height:34px; background:#111827; clip-path: polygon(50% 4%, 4% 96%, 96% 96%); display:flex; align-items:center; justify-content:center; }
.a4-icon-item .badge.tri { width:34px; height:30px; border-radius:0; background:#fbbf24; clip-path: polygon(50% 8%, 8% 93%, 92% 93%); display:flex; align-items:flex-end; justify-content:center; padding-bottom:4px; color:#1f2937; border:none; }
.a4-icon-item .badge.circle-red { background:#fff; border:1.5px solid #dc2626; position:relative; }
.a4-icon-item .badge.circle-red::after { content:""; position:absolute; width:140%; height:1.5px; background:#dc2626; transform:rotate(45deg); }
.a4-icon-item .badge .ic { width:15px; height:15px; }
.a4-icon-item .label { margin-top:3px; font-size:7.6px; font-weight:600; line-height:1.15; color:#1f2937; }

.a4-badge-card { text-align:center; padding-top:6px; }
.a4-badge-logo { font-weight:800; font-size:15px; color:#0b6e6e; }
.a4-badge-logo .sub { font-size:8.5px; color:#94a3b8; font-weight:500; }
.a4-badge-tag { font-size:11px; font-weight:800; letter-spacing:1px; color:#334155; margin-top:10px; }
.a4-badge-name { font-size:19px; font-weight:800; color:#0f172a; margin-top:2px; }
.a4-badge-email { font-size:10px; color:#64748b; margin-bottom:8px; }
.a4-badge-fields { text-align:left; font-size:10px; margin:0 auto 10px; max-width:220px; }
.a4-badge-fields .row { display:flex; justify-content:space-between; padding:2.5px 0; border-bottom:1px dashed #e5eaef; }
.a4-badge-fields .row b { color:#0f172a; font-weight:700; }
.a4-badge-fields .row span:first-child { color:#64748b; }
.a4-badge-qr { width:110px; height:110px; margin:0 auto; }
.a4-badge-scan { color:#dc2626; font-weight:800; font-size:10px; margin-top:6px; }
.a4-badge-footer { font-size:7px; color:#cbd5e1; margin-top:10px; }

.a4-controls { text-align:center; padding:16px; }
@media print { .a4-controls { display:none; } body { margin:0; } .a4-page { box-shadow:none; } }
@media screen { .a4-page { box-shadow:0 2px 12px rgba(0,0,0,0.12); margin:20px auto; } }


/* ---- Admin v2 (matches production design) ---- */
.sidebar-v2 {
  width: 240px; background: #111827; color: #cbd5e1; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 100vh;
}
.sidebar-v2 .brand-row { display:flex; align-items:center; gap:10px; padding: 18px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-v2 .avatar {
  width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; flex-shrink:0;
}
.sidebar-v2 .brand-text .name { font-weight:700; color:#fff; font-size:14.5px; line-height:1.2; }
.sidebar-v2 .brand-text .sub { font-size:11.5px; color:#94a3b8; }
.sidebar-v2 nav.nav-v2 { padding: 10px 8px; }
.sidebar-v2 nav.nav-v2 a {
  display:flex; align-items:center; gap:10px; padding: 10px 12px; border-radius:8px; margin-bottom:2px;
  color:#cbd5e1; text-decoration:none; font-size:14px; cursor:pointer;
}
.sidebar-v2 nav.nav-v2 a .ic { width:18px; text-align:center; }
.sidebar-v2 nav.nav-v2 a:hover { background: rgba(255,255,255,.06); color:#fff; }
.sidebar-v2 nav.nav-v2 a.active { background: rgba(30,136,168,.25); color:#fff; }
.sidebar-v2 .bottom-nav { padding: 10px 8px 16px; border-top: 1px solid rgba(255,255,255,.08); }
.sidebar-v2 .bottom-nav a {
  display:flex; align-items:center; gap:10px; padding: 9px 12px; border-radius:8px;
  color:#94a3b8; text-decoration:none; font-size:13.5px; cursor:pointer;
}
.sidebar-v2 .bottom-nav a:hover { color:#fff; background: rgba(255,255,255,.06); }

.admin-main-v2 { flex:1; padding: 28px 32px; background:#f8fafc; min-height:100vh; }
.page-header { margin-bottom: 20px; }
.page-header h1 { margin:0; font-size: 24px; font-weight: 800; color:#0f172a; }
.page-header p { margin:4px 0 0; color:#64748b; font-size: 13.5px; }
.page-header-row { display:flex; justify-content:space-between; align-items:flex-start; }

.panel { background:#fff; border:1px solid #e5eaef; border-radius: 14px; padding: 18px; margin-bottom: 18px; }
.panel-flat { background:#fff; border:1px solid #e5eaef; border-radius: 14px; overflow:hidden; }

.btn-chip {
  display:inline-flex; align-items:center; gap:6px; padding:9px 16px; border-radius:9px; border:1px solid #e5eaef;
  background:#fff; font-weight:600; font-size:13.5px; cursor:pointer; color:#0f172a; width:auto;
}
.btn-chip.solid { background: var(--accent); color:#fff; border-color: var(--accent); }
.btn-chip:hover { background:#f1f5f9; }
.btn-chip.solid:hover { filter: brightness(0.95); }

.search-input-wrap { position:relative; max-width: 340px; flex:1; }
.search-input-wrap input {
  width:100%; padding: 10px 12px 10px 34px; border-radius:9px; border:1px solid #e5eaef; font-size:14px;
}
.search-input-wrap .ic { position:absolute; left:11px; top:50%; transform:translateY(-50%); color:#94a3b8; }

.table-v2 { width:100%; border-collapse: collapse; font-size: 13.5px; }
.table-v2 th { text-align:left; padding: 12px 14px; color:#64748b; font-weight:600; font-size:12.5px; text-transform:uppercase; letter-spacing:.03em; border-bottom:1px solid #eef1f4; }
.table-v2 td { padding: 12px 14px; border-bottom:1px solid #f1f4f7; vertical-align: middle; }
.table-v2 tr:last-child td { border-bottom:none; }

.pill { display:inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight:600; background:#eef2ff; color:#3730a3; }
.pill-blood { background:#fef2f2; color:#991b1b; }
.pill-muted { background:#f1f5f9; color:#64748b; }
.pill-visits { background: var(--accent); color:#fff; font-size:11px; padding:2px 8px; margin-left:6px; }

.chip-count { display:inline-flex; align-items:center; gap:6px; padding:8px 14px; border:1px solid #e5eaef; border-radius:9px; font-size:13px; font-weight:600; color:#0f172a; background:#fff; }

.toggle-switch { position: relative; display:inline-block; width:40px; height:22px; }
.toggle-switch input { opacity:0; width:0; height:0; }
.toggle-slider {
  position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0; background:#cbd5e1;
  border-radius:22px; transition:.2s;
}
.toggle-slider:before {
  content:""; position:absolute; height:16px; width:16px; left:3px; bottom:3px; background:#fff;
  border-radius:50%; transition:.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(18px); }

.status-badge { padding:3px 10px; border-radius:20px; font-size:12px; font-weight:700; }
.status-badge.active { background:#dcfce7; color:#166534; }
.status-badge.inactive { background:#f1f5f9; color:#64748b; }

.icon-btn { background:none; border:none; cursor:pointer; color:#94a3b8; font-size:15px; padding:4px; width:auto; }
.icon-btn:hover { color:#dc2626; }
.chevron-btn { background:none; border:none; cursor:pointer; color:#94a3b8; font-size:13px; width:auto; padding:2px 6px; }

.role-card { border:1px solid #e5eaef; border-radius: 14px; padding:18px; margin-bottom:14px; background:#fff; }
.role-card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.role-card-head h3 { margin:0; font-size:16px; font-weight:800; color:#0f172a; }
.perm-check-row { display:flex; flex-wrap:wrap; gap:18px; }
.perm-check-item { display:flex; align-items:center; gap:8px; font-size:13.5px; color:#334155; }
.perm-check-item input[type=checkbox] { width:17px; height:17px; accent-color: var(--accent); }
.perm-check-item.readonly input { pointer-events:none; }

.form-row-inline { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.form-row-inline input[type=text] { flex:1; min-width:200px; }

/* ---- Check-in page v2 ---- */
.hero-v2 { text-align:center; padding: 24px 16px 4px; }
.hero-v2 h1 { font-size:26px; font-weight:800; margin:0; color:#0f172a; }
.hero-v2 p { color:#64748b; margin-top:6px; font-size:14px; }

.emergency-panel-v2 { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; margin-bottom:20px; }
.emergency-header-v2 { background:#ef4444; color:#fff; padding:14px 20px; font-weight:700; display:flex; align-items:center; gap:8px; font-size:15px; }
.emergency-header-v2 .ic { width:18px; height:18px; display:inline-flex; }
.emergency-body-v2 { padding:20px; }
.emergency-grid-v2 { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
@media (max-width:560px){ .emergency-grid-v2{ grid-template-columns:1fr; } }
.emergency-card-v2 { border-radius:12px; padding:16px; text-align:center; }
.emergency-card-v2 .badge { width:44px;height:44px;border-radius:50%; display:flex;align-items:center;justify-content:center; margin:0 auto 8px; }
.emergency-card-v2 .badge .ic { width:22px;height:22px; }
.emergency-card-v2 .lbl { font-size:13px; color:#64748b; font-weight:600; }
.emergency-card-v2 .num { font-size:24px; font-weight:800; margin-top:2px; }
.ec-ambulance-v2 { background:#fef2f2; } .ec-ambulance-v2 .badge{ background:#fecaca; color:#dc2626;} .ec-ambulance-v2 .num{color:#dc2626;}
.ec-civil-v2 { background:#fff7ed; } .ec-civil-v2 .badge{ background:#fed7aa; color:#ea580c;} .ec-civil-v2 .num{color:#ea580c;}
.ec-police-v2 { background:#eff6ff; } .ec-police-v2 .badge{ background:#bfdbfe; color:#1d4ed8;} .ec-police-v2 .num{color:#1d4ed8;}
.hse-bar-v2 { margin-top:12px; background:#fffbeb; border:1px solid #fde68a; border-radius:12px; padding:14px 16px; display:flex; align-items:center; gap:12px; }
.hse-bar-v2 .badge { width:36px;height:36px;border-radius:50%; background:#fde68a; color:#b45309; display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.hse-bar-v2 .badge .ic { width:18px;height:18px; }
.hse-bar-v2 .lbl { font-size:13px; color:#78350f; font-weight:600; }
.hse-bar-v2 .num { font-size:17px; font-weight:800; color:#b45309; }

.fire-panel-v2 { background:#fef2f2; border-radius:16px; padding:26px 18px; margin-bottom:20px; }

.safety-doc { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; margin-bottom:20px; }
.safety-doc-section { padding: 26px 18px; }
.safety-doc-section + .safety-doc-section { border-top:1px solid #eef1f4; }

.section-head-v2 { display:flex; align-items:center; justify-content:center; gap:8px; font-weight:800; font-size:18px; text-align:center; }
.section-head-v2 .ic { width:22px; height:22px; }
.section-sub-v2 { color:#64748b; font-size:13.5px; text-align:center; max-width:560px; margin:6px auto 22px; }
.icon-grid-v2 { display:flex; flex-wrap:wrap; justify-content:center; gap:18px 14px; }

.fire-step { display:flex; flex-direction:column; align-items:center; width:110px; text-align:center; position:relative; }
.fire-step .badge { width:58px;height:58px;border-radius:16px; background:#ef4444; display:flex;flex-direction:column;align-items:center;justify-content:center; gap:2px; color:#fff; position:relative; padding:4px 2px; }
.fire-step .badge.circle { width:66px; height:66px; border-radius:50%; }
.fire-step .badge .ic { width:20px;height:20px; }
.fire-step .badge-caption { font-size:6.3px; font-weight:800; letter-spacing:0.3px; text-align:center; line-height:1.1; color:#fff; }
.fire-step .num { position:absolute; top:-7px; left:-7px; width:21px;height:21px;border-radius:50%; background:#dc2626; color:#fff; font-size:11px; font-weight:800; display:flex;align-items:center;justify-content:center; border:2px solid #fef2f2; }
.fire-step .label { margin-top:9px; font-size:12.5px; font-weight:600; color:#1f2937; }

.gear-item { display:flex;flex-direction:column;align-items:center; width:94px; text-align:center; }
.gear-item .badge { width:54px;height:54px;border-radius:50%; background:#2563eb; border:3px solid #111827; display:flex;align-items:center;justify-content:center; color:#fff; }
.gear-item .badge .ic { width:24px;height:24px; }
.gear-item .label { margin-top:8px; font-size:12px; font-weight:600; color:#1f2937; }

.hazard-item { display:flex;flex-direction:column;align-items:center; width:100px; text-align:center; }
.hazard-item .tri-wrap { width:70px; height:62px; background:#111827; clip-path: polygon(50% 4%, 4% 96%, 96% 96%); display:flex; align-items:center; justify-content:center; }
.hazard-item .badge { width:64px;height:56px; background:#fbbf24; clip-path: polygon(50% 6%, 6% 95%, 94% 95%); display:flex; align-items:flex-end; justify-content:center; padding-bottom:8px; color:#1f2937; }
.hazard-item .badge .ic { width:22px;height:22px; }
.hazard-item .label { margin-top:9px; font-size:12px; font-weight:600; color:#1f2937; }

.prohibit-item { display:flex;flex-direction:column;align-items:center; width:94px; text-align:center; }
.prohibit-item .badge { width:54px;height:54px;border-radius:50%; background:#fff; border:2.5px solid #ef4444; display:flex;align-items:center;justify-content:center; color:#1f2937; position:relative; overflow:hidden; }
.prohibit-item .badge .ic { width:24px;height:24px; }
.prohibit-item .badge::after { content:""; position:absolute; top:50%; left:50%; width:145%; height:3px; background:#ef4444; transform:translate(-50%,-50%) rotate(45deg); }
.prohibit-item .label { margin-top:8px; font-size:12px; font-weight:600; color:#1f2937; }

.ready-block { text-align:center; margin: 4px 0 20px; }
.ready-block h2 { font-size:21px; font-weight:800; margin:0; color:#0f172a; }
.ready-block p { color:#64748b; margin-top:4px; font-size:14px; }
.selector-grid { display:flex; gap:14px; margin-top:18px; flex-wrap:wrap; justify-content:center; }
.selector-card { flex:1; min-width:210px; max-width:280px; border-radius:16px; padding:22px 16px; text-align:center; cursor:pointer; border:1.5px solid; background:none; font-family:inherit; }
.selector-card .badge { width:52px;height:52px;border-radius:50%; display:flex;align-items:center;justify-content:center; margin:0 auto 12px; }
.selector-card .badge .ic { width:24px;height:24px; }
.selector-card h3 { margin:0 0 6px; font-size:15.5px; font-weight:800; color:#0f172a; }
.selector-card p { margin:0; font-size:12.5px; color:#64748b; }
.selector-returning { background:#eff6ff; border-color:#bfdbfe; }
.selector-returning .badge { background:#dbeafe; color:#1d4ed8; }
.selector-new { background:#fff7ed; border-color:#fed7aa; }
.selector-new .badge { background:#fed7aa; color:#c2410c; }

.form-header-icon { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 12px; }
.form-header-icon .ic { width:24px; height:24px; }
.form-header-icon.returning { background:#dbeafe; color:#1d4ed8; }
.form-header-icon.new { background:#fed7aa; color:#c2410c; }

.badge-logo-row { font-weight:800; font-size:15px; color:#0b6e6e; text-align:center; margin-bottom:10px; }
.badge-logo-row .badge-logo-sub { font-size:10px; color:#94a3b8; font-weight:500; }

