/* mk-hermes.ru local overrides.
 *
 * Injected by nginx sub_filter just before </head>, so it loads after
 * style.css and wins on equal specificity. Nothing in /root/.hermes-webui
 * is modified - a `git pull` in the checkout leaves these intact.
 *
 * Served from /var/www/hermes-branding/custom.css
 */

/* 1. Drop the caduceus mark on the new-chat screen (index.html:442). */
.empty-logo { display: none !important; }

/* 2. Drop the accent wash behind the new-chat empty state.
 *    Stock rule is style.css:3532
 *      radial-gradient(ellipse at 50% 20%, var(--accent-bg) 0%, transparent 60%)
 */
.empty-state { background: none !important; }

/* 3. Remove the titlebar mark entirely. The stock mark is an inline <svg>
 *    inside .app-titlebar-icon; hiding only the svg would leave the span's
 *    flex gap behind, so the span goes too.
 */
.app-titlebar-icon { display: none !important; }

/* 4. Remove the "Hermes Dashboard" link to the old dashboard from the nav rail
 *    and the mobile nav. Both buttons carry .dashboard-link and the
 *    data-dashboard-link attribute (index.html:164 rail, :183 mobile); the
 *    attribute selector also catches the badge span they wrap.
 *
 *    The built-in equivalent is Settings > Official Hermes Dashboard >
 *    "Never show", but that setting is stored per-browser, so it would need
 *    repeating on every device. This rule applies everywhere.
 */
.dashboard-link,
[data-dashboard-link] { display: none !important; }
