/* SNM branding override - fixes Element's hardcoded white text on
   .mx_TabbedView_tabLabel_active, whose background comes from the
   Compound token --cpd-color-bg-subtle-secondary (unrelated to
   custom_themes accent-color), causing unreadable text in Settings. */
.mx_TabbedView_tabLabel_active {
  background-color: var(--accent-color) !important;
}

/* Auth screen footer: replace "Powered by Matrix" text. The official
   custom_translations_url override (see custom_translations.json) does
   not take effect for this string, so the text is replaced via CSS
   content instead of relying on the i18n override. */
.mx_AuthFooter a[href="https://matrix.org"] {
  font-size: 0;
}
.mx_AuthFooter a[href="https://matrix.org"]::before {
  content: "Běží na infrastruktuře Servis na míru";
  font-size: 0.8125rem;
}
