/* auto-extracted */


/* ── Sub-tabs Configurações: Modelo B Pill Group ──────────────────────────
   6 pills sem flex-wrap (viewport canônica ≥760px). Namespace .arh-cfg-pill-*.
   Tokens idênticos ao canônico monitoramento.py (height pill ≈28-32px, padding
   8px 16px, border-radius 6px, container 10px). */
.arh-cfg-pill-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 0 0;
}
.arh-cfg-pill-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
  flex-wrap: wrap;  /* fallback mobile — sem overflow em viewport estreita */
}
[data-theme="light"] .arh-cfg-pill-group {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.arh-cfg-pill {
  padding: 8px 14px;  /* 14px lateral (vs 16 no mon) — 6 pills cabem sem wrap em 760px */
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms, color 120ms;
  font-family: var(--font-sans);
  border: none;
  background: transparent;
}
.arh-cfg-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
[data-theme="light"] .arh-cfg-pill:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
}
.arh-cfg-pill.active {
  background: var(--accent-brand);
  color: #fff;
  font-weight: 600;
}
.arh-cfg-pill:focus-visible {
  outline: 2px solid var(--accent-brand-text);
  outline-offset: 2px;
}
/* Abas bloqueadas — sem interação, opacidade reduzida */
.arh-cfg-pill--disabled {
  opacity: .40;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--text-disabled, var(--text-muted));
}
.arh-cfg-pill--disabled:hover {
  background: transparent;
  color: var(--text-disabled, var(--text-muted));
}
/* st.button reais ficam ocultos */
.st-key-cfg_subtab_aparencia,
.st-key-cfg_subtab_drive,
.st-key-cfg_subtab_preferencias,
.st-key-cfg_subtab_notificacoes,
.st-key-cfg_subtab_a11y,
.st-key-cfg_subtab_sobre {
  display: none !important;
}


Linha de sub-tabs Configurações no padrão Modelo B Pill Group.

    6 pills. Aparência e Google Drive são ativas (clicáveis via JS bridge).
    As 4 restantes são bloqueadas: sem data-seg-trigger, com classe
    arh-cfg-pill--disabled + cadeado Phosphor + aria-disabled="true".
    