/* Modo de visualização (Cidadão x Técnico) */
.mode-switch{display:flex;gap:8px;align-items:center;justify-content:flex-end;flex-wrap:wrap}
.mode-switch .mode-btn{border:1px solid rgba(255,255,255,.35);background:rgba(255,255,255,.08);color:#fff;padding:8px 10px;border-radius:999px;font-weight:700;font-size:12px;cursor:pointer}
.mode-switch .mode-btn[aria-pressed="true"]{background:#fff;color:#0b2a44;border-color:#fff}
.mode-switch .mode-label{font-size:12px;color:rgba(255,255,255,.9);font-weight:700;margin-right:4px}

body.mode-cidadao .tech-only{display:none !important}
body.mode-tecnico .cid-only{display:none !important}

.tech-panel{margin-top:16px;background:#fff;border-radius:14px;box-shadow:0 10px 25px rgba(0,0,0,.08);border:1px solid rgba(16,24,40,.08);overflow:hidden}
.tech-panel header{padding:14px 16px;background:#0b2a44;color:#fff;display:flex;justify-content:space-between;align-items:center;gap:12px}
.tech-panel header h3{margin:0;font-size:14px}
.tech-panel header p{margin:0;font-size:12px;opacity:.9}
.tech-panel .content{padding:12px 16px}
.tech-panel table{width:100%;border-collapse:collapse}
.tech-panel th,.tech-panel td{padding:10px 8px;border-bottom:1px solid rgba(16,24,40,.08);vertical-align:top;font-size:13px}
.tech-panel th{text-align:left;font-size:12px;letter-spacing:.2px;text-transform:uppercase;color:#334155}
.tech-panel td.num,.tech-panel th.num{text-align:right;white-space:nowrap}
.tech-panel .muted{color:#64748b;font-size:12px}
.tech-panel details{margin:8px 0}
.tech-panel summary{cursor:pointer;font-weight:700}
