/* WP Experience Verifier — Aadhaar Identity Verification Styles (POC 3)
   Extends app.css — import app.css first.
*/

/* ── Age gate toggle row ─────────────────────────────────────────────────── */
.wev-a-age-gate-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.wev-a-gate-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--wev-navy);
}

.wev-a-gate-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.wev-a-gate-config {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wev-gray);
  transition: opacity .2s;
}

.wev-a-gate-config label {
  font-weight: 600;
  color: var(--wev-navy);
}

.wev-a-gate-config input[type="number"] {
  padding: 6px 10px;
  border: 1.5px solid var(--wev-border);
  border-radius: var(--wev-radius);
  font-size: 14px;
  font-family: var(--wev-font);
  text-align: center;
}

.wev-a-gate-config input:focus {
  outline: none;
  border-color: var(--wev-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ── Age display block inside DOB card ───────────────────────────────────── */
.wev-a-age-block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--wev-border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wev-a-age-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--wev-navy);
  line-height: 1;
}

/* ── Age gate result section ─────────────────────────────────────────────── */
.wev-a-gate-section {
  grid-column: 1 / -1;   /* full-width in the 2-col grid */
}

/* ── Privacy notice ──────────────────────────────────────────────────────── */
.wev-aadhaar-root .wev-pane-title::after {
  content: '  🔒';
  font-size: 14px;
  font-weight: 400;
  opacity: .6;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .wev-a-age-gate-row  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wev-a-age-num       { font-size: 22px; }
  .wev-aadhaar-root .wev-comparison { grid-template-columns: 1fr; }
}
