/* Unified Console — role switcher styles (everything else from kit.css + the
   two surface CSS files). */
.roleswitch { position: relative; }
.role-btn { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 11px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--surface); font-size: 13px; font-weight: 500; color: var(--fg); cursor: pointer; transition: background .12s; }
.role-btn:hover { background: var(--surface-hover); }
.role-btn svg:first-child { color: var(--primary); }
.role-scrim { position: fixed; inset: 0; z-index: 30; }
.role-menu { position: absolute; top: 40px; right: 0; z-index: 31; width: 244px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 5px; animation: fade .12s ease; }
.role-menu-head { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); padding: 8px 9px 6px; }
.role-opt { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; padding: 8px 9px; border: none; background: none; border-radius: var(--radius-xs); cursor: pointer; text-align: left; }
.role-opt:hover { background: var(--surface-hover); }
.role-opt.on { background: var(--primary-subtle-bg); }
.role-opt-main { display: flex; flex-direction: column; gap: 1px; }
.role-opt-label { font-size: 13px; font-weight: 500; color: var(--fg); }
.role-opt-sub { font-size: 11px; color: var(--fg-faint); }
.role-menu-note { font-size: 11px; color: var(--fg-subtle); line-height: 1.45; padding: 8px 9px 6px; border-top: 1px solid var(--border-subtle); margin-top: 4px; }
.role-menu-note .mono { color: var(--fg-muted); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
