:root {
	--navy: #2c303b;        /* ABRA charcoal (nadpisy, hlavička) */
	--navy-700: #21242e;
	--charcoal: #2c303b;
	--red: #e5322b;         /* ABRA červená (akcent „ERP") */
	--red-dark: #c8271f;
	--orange: #f7931e;      /* přechod v logu */
	--ink: #2b303a;
	--muted: #6a7180;
	--line: #e6e8ee;
	--bg: #f3f4f7;
	--card: #ffffff;
	--ok: #1e9e6a;
	--radius: 12px;
	--shadow: 0 1px 2px rgba(30,34,44,.06), 0 10px 30px rgba(30,34,44,.08);
	--font: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
	--head: 'Poppins', var(--font);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--head); }

/* ---------- Header / Footer ---------- */
.site-header {
	background: #fff;
	color: var(--charcoal);
	position: sticky; top: 0; z-index: 50;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 3px rgba(30,34,44,.05);
}
.site-header__inner, .site-footer__inner {
	max-width: 1180px; margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between;
	min-height: 60px;
}
.brand { display: flex; align-items: baseline; gap: 10px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand__logo {
	font-size: 22px; font-weight: 800; letter-spacing: 1px;
	color: #fff; position: relative; padding-right: 2px;
}
.brand__logo::after {
	content: ''; position: absolute; right: -6px; top: 4px;
	width: 5px; height: 5px; border-radius: 50%; background: var(--red);
}
.brand__sub { font-size: 13px; color: var(--muted); font-weight: 500; padding-left: 12px; margin-left: 4px; border-left: 1px solid var(--line); }
.site-nav { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.site-nav__user { color: var(--muted); max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-nav__logout { color: var(--charcoal); font-weight: 600; opacity: .9; }
.site-nav__logout:hover { opacity: 1; text-decoration: none; color: var(--red); }

/* oficiální ABRA logo (obrázek) */
.brand-logo { height: 30px; width: auto; display: block; flex: 0 0 auto; align-self: flex-start; max-width: 100%; }
.brand-logo--lg { height: 40px; }

.site-main { min-height: calc(100vh - 60px - 72px); }
.site-footer { border-top: 1px solid var(--line); background: #fff; margin-top: 48px; }
.site-footer__inner { min-height: 72px; font-size: 13px; color: var(--muted); gap: 24px; flex-wrap: wrap; }
.site-footer__note { color: #90a0b0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font: inherit; font-weight: 600; cursor: pointer;
	border: 1px solid transparent; border-radius: 9px;
	padding: 11px 20px; transition: .15s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--charcoal); color: #fff; }
.btn--primary:hover { background: #1c1f28; }
.btn--primary:disabled { background: #c7ced7; cursor: not-allowed; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: #c7d0db; }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 28px; font-size: 16px; }

/* ---------- Fields ---------- */
.field-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.req { color: var(--red); font-style: normal; }
.field-input {
	width: 100%; font: inherit; color: var(--ink);
	border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px;
	background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,37,64,.08); }
.field-input[readonly] { background: #f3f5f8; color: var(--muted); }
.field-input--lg { padding: 13px 15px; font-size: 16px; }
.field-textarea { resize: vertical; min-height: 68px; }
.field-error { display: block; color: var(--red); font-size: 13px; margin-top: 6px; }

/* ---------- Logo mark ---------- */
.brand-mark { display: inline-flex; align-items: center; gap: 11px; color: var(--charcoal); }
.brand-mark svg { height: 32px; width: auto; display: block; }
.brand-mark__word { font-family: var(--head); font-weight: 800; font-size: 25px; letter-spacing: .5px; color: currentColor; line-height: 1; }
.brand-mark--light { color: #fff; }
.brand-mark--lg svg { height: 46px; }
.brand-mark--lg .brand-mark__word { font-size: 34px; }

/* ---------- Auth (split layout dle abra.eu) ---------- */
body.is-auth .site-header, body.is-auth .site-footer { display: none; }
body.is-auth .site-main { min-height: 100vh; }
body.is-thanks .site-main { display: grid; place-items: center; padding: 40px 20px; }

.auth-split { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; }

.auth-hero {
	position: relative; overflow: hidden; color: var(--charcoal);
	background: linear-gradient(135deg, #f6f3f0 0%, #eef0f4 52%, #e6eaf1 100%);
	display: flex; justify-content: flex-end;
	padding: 44px 56px;
}
.auth-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 480px; display: grid; grid-template-rows: auto 1fr auto; gap: 28px; }
.auth-hero__body { align-self: center; }
.auth-hero__glow { position: absolute; width: 620px; height: 620px; left: -160px; bottom: -220px;
	background: radial-gradient(circle, rgba(247,147,30,.28) 0%, rgba(229,50,43,.10) 40%, transparent 70%); filter: blur(4px); z-index: 1; }
.auth-hero__lines { position: absolute; inset: 0; z-index: 1; opacity: .5; }
.auth-hero__lines svg { position: absolute; right: -40px; top: 0; height: 100%; }
.auth-hero__brand, .auth-hero__body, .auth-hero__foot { position: relative; z-index: 2; }
.auth-hero__body { max-width: 520px; }
.auth-hero__brand { display: inline-flex; align-self: flex-start; }
.auth-hero__eyebrow { font-family: var(--head); font-weight: 700; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin: 0 0 18px; }
.auth-hero h1 { font-family: var(--head); font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.06; margin: 0 0 18px; color: var(--charcoal); letter-spacing: -.5px; }
.auth-hero h1 em { color: var(--red); font-style: normal; }
.auth-hero__lead { font-size: 16.5px; line-height: 1.6; color: #565e6c; margin: 0 0 26px; max-width: 46ch; }
.auth-feats { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.auth-feats li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: #3f4552; }
.auth-feats svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--red); }
.auth-hero__foot { font-size: 13px; color: #7a828f; }

.auth-panel { display: flex; align-items: center; justify-content: flex-start; padding: 40px 56px; background: #fff; }
.auth-card { width: 100%; max-width: 400px; }
@media (min-width: 1500px) { .auth-hero { padding-right: 72px; } .auth-panel { padding-left: 72px; } }
.auth-card__logo { display: none; margin-bottom: 26px; }
.auth-card__head h1 { font-family: var(--head); font-weight: 800; margin: 0 0 8px; font-size: 26px; color: var(--charcoal); }
.auth-card__head p { margin: 0 0 24px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.auth-form { display: flex; flex-direction: column; gap: 4px; }
.auth-form .btn { margin-top: 18px; }
.field-input--code { text-align: center; letter-spacing: 12px; font-size: 26px; font-weight: 700; padding: 14px; }
.auth-note { margin: 20px 0 0; font-size: 13px; color: var(--muted); text-align: center; }

@media (max-width: 860px) {
	.auth-split { grid-template-columns: 1fr; }
	.auth-hero { display: none; }
	.auth-panel { min-height: 100vh; align-content: center; }
	.auth-card__logo { display: flex; justify-content: center; }
}

.flash { padding: 11px 14px; border-radius: 9px; font-size: 14px; margin-bottom: 16px; }
.flash--success { background: #e7f6ef; color: #14724c; border: 1px solid #b8e6d1; }
.flash--error { background: #fdecec; color: #a3131b; border: 1px solid #f5c3c5; }

/* ---------- Thanks ---------- */
.thanks-card {
	max-width: 520px; text-align: center; background: #fff; border: 1px solid var(--line);
	border-radius: 16px; box-shadow: var(--shadow); padding: 48px 40px;
}
.thanks-card__icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: #e7f6ef; color: var(--ok); display: grid; place-items: center; }
.thanks-card__icon svg { width: 42px; height: 42px; }
.thanks-card h1 { margin: 0 0 12px; color: var(--navy); }
.thanks-card p { color: var(--muted); margin: 0 0 12px; }
.thanks-card .btn { margin-top: 18px; }

/* ---------- Questionnaire layout ---------- */
.q-wrap {
	max-width: 1180px; margin: 0 auto; padding: 28px 24px 0;
	display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start;
}
.q-side { position: sticky; top: 84px; align-self: start; }

.q-progress { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; text-align: center; }
.q-progress__ring { position: relative; width: 132px; height: 132px; margin: 0 auto 10px; }
.q-progress__ring svg { transform: rotate(-90deg); width: 132px; height: 132px; }
.q-progress__track { fill: none; stroke: #eef1f5; stroke-width: 10; }
.q-progress__bar {
	fill: none; stroke: var(--red); stroke-width: 10; stroke-linecap: round;
	stroke-dasharray: 326.7; stroke-dashoffset: 326.7; transition: stroke-dashoffset .5s ease;
}
.q-progress__pct { position: absolute; inset: 0; display: grid; place-content: center; }
.q-progress__pct span { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1; }
.q-progress__pct small { font-size: 15px; color: var(--muted); font-weight: 700; }
.q-progress__label { font-size: 13px; color: var(--muted); }
.q-progress__label span { color: var(--navy); font-weight: 700; }

.q-nav { margin: 18px 0; display: flex; flex-direction: column; gap: 2px; }
.q-nav__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: var(--ink); font-size: 13.5px; }
.q-nav__item:hover { background: #eef2f7; text-decoration: none; }
.q-nav__item.is-active { background: #eaf0f7; }
.q-nav__text b { color: var(--navy); }
.q-nav__check { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #cdd6e0; position: relative; transition: .2s; }
.q-nav__item.is-done .q-nav__check { background: var(--ok); border-color: var(--ok); }
.q-nav__item.is-done .q-nav__check::after { content: ''; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.q-nav__item.is-partial .q-nav__check { border-color: var(--red); box-shadow: inset 0 0 0 3px var(--red); }

.q-submit { margin-top: 6px; }
.q-side__hint { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 4px 0; }

/* ---------- Questionnaire cards ---------- */
.q-intro { margin-bottom: 20px; }
.q-intro h1 { margin: 0 0 10px; font-size: 26px; color: var(--navy); }
.q-intro p { margin: 0; color: var(--muted); max-width: 68ch; }

.q-banner { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.q-banner--done { background: #eef6ff; border: 1px solid #cfe4fb; color: #1d5fa8; }

.q-status { height: 20px; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; text-align: right; transition: .2s; }
.q-status.is-saving { color: var(--muted); }
.q-status.is-saved { color: var(--ok); }

.q-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 28px; margin-bottom: 20px; scroll-margin-top: 80px; }
.q-card__head { display: flex; align-items: center; gap: 12px; }
.q-card__head h2 { margin: 0; font-size: 19px; color: var(--navy); display: flex; align-items: center; gap: 12px; flex: 1; }
.q-card__num { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 8px; background: var(--navy); color: #fff; font-size: 15px; display: grid; place-items: center; }
.q-card__badge { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; background: #eef1f5; color: var(--muted); white-space: nowrap; }
.q-card__badge.is-done { background: #e7f6ef; color: var(--ok); }
.q-card__intro { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.q-fields { display: grid; gap: 16px; margin-top: 20px; }
.q-field--wide { grid-column: 1 / -1; }
@media (min-width: 640px) { .q-fields { grid-template-columns: 1fr 1fr; } .q-field--wide { grid-column: 1 / -1; } }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: block; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; color: var(--ink); transition: .15s; cursor: pointer; }
.chip input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(10,37,64,.15); }

/* ---------- Tables (interfaces / matrix / requirements) ---------- */
.q-table { margin-top: 20px; }
.q-table__head { display: grid; gap: 10px; padding: 0 12px 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--muted); border-bottom: 1px solid var(--line); }
.q-row { display: grid; gap: 10px; align-items: center; padding: 12px; border-radius: 10px; }
.q-row:nth-child(even of .q-row) { background: #fafbfc; }
.q-row + .q-row { border-top: 1px solid #f0f2f6; }
.q-row__label strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.q-row__label small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.q-table--iface .q-table__head { grid-template-columns: 2fr 1fr 1fr 1fr; }
.q-table--iface .q-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
.q-table--iface .q-note { grid-column: 1 / -1; }

.q-table--req .q-table__head { grid-template-columns: 2.4fr .8fr .8fr .8fr 1.4fr; }
.q-table--req .q-row { grid-template-columns: 2.4fr .8fr .8fr .8fr 1.4fr; }

.q-table--matrix .q-table__head { grid-template-columns: 2fr 1fr 1fr 1fr; }
.q-table--matrix .q-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
.q-table__head span:not(:first-child), .q-table--iface .q-row > .q-opt,
.q-table--req .q-row > .q-opt { text-align: center; justify-self: center; }

/* radio option dot */
.q-opt { display: inline-grid; place-items: center; cursor: pointer; padding: 4px; }
.q-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.q-opt__dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #cbd4df; transition: .15s; position: relative; }
.q-opt input:checked + .q-opt__dot { border-color: var(--red); }
.q-opt input:checked + .q-opt__dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--red); }
.q-opt input:focus-visible + .q-opt__dot { box-shadow: 0 0 0 3px rgba(227,6,19,.18); }

/* matrix pills V/U/N */
.q-cell { display: flex; gap: 6px; justify-content: center; }
.q-cell--na { color: #c2ccd7; text-align: center; justify-self: center; font-weight: 700; }
.q-pill { position: relative; }
.q-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.q-pill span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--line); font-weight: 700; font-size: 13.5px; color: var(--muted); cursor: pointer; transition: .15s; }
.q-pill input:checked + span { background: var(--red); border-color: var(--red); color: #fff; }
.q-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(227,6,19,.18); }

.q-note { font: inherit; font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; width: 100%; }
.q-note:focus { outline: none; border-color: var(--navy); }

.q-legend { margin: 14px 2px 0; font-size: 12.5px; color: var(--muted); }
.q-legend b { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; background: var(--navy); color: #fff; border-radius: 5px; font-size: 12px; margin-right: 2px; }

.q-foot { text-align: center; padding: 12px 0 48px; }
.q-foot p { color: var(--muted); font-size: 13px; margin: 12px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.q-wrap { grid-template-columns: 1fr; }
	.q-side { position: static; order: -1; }
	.q-progress { display: flex; align-items: center; gap: 18px; text-align: left; }
	.q-progress__ring, .q-progress__ring svg { width: 88px; height: 88px; }
	.q-nav { display: none; }
}
@media (max-width: 620px) {
	.q-table__head { display: none; }
	.q-table--iface .q-row, .q-table--req .q-row, .q-table--matrix .q-row { grid-template-columns: 1fr; text-align: left; }
	.q-table--iface .q-row .q-opt, .q-table--req .q-row .q-opt { justify-self: start; }
	.q-opt::after { content: attr(data-label); font-size: 13px; color: var(--muted); margin-left: 8px; }
	.q-cell { justify-content: flex-start; }
}

/* ---------- Admin ---------- */
.site-nav__admin { color: var(--charcoal); font-weight: 600; padding: 6px 12px; border: 1px solid var(--line); border-radius: 7px; }
.site-nav__admin:hover { border-color: #c7d0db; text-decoration: none; color: var(--red); }

.admin-wrap { max-width: 1120px; margin: 0 auto; padding: 32px 24px 48px; }
.admin-wrap--narrow { max-width: 820px; }
.admin-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.admin-head h1 { margin: 0 0 4px; font-size: 24px; color: var(--charcoal); }
.admin-head p { margin: 0; color: var(--muted); font-size: 14px; }
.admin-back { display: inline-block; font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.admin-back:hover { color: var(--red); text-decoration: none; }

.admin-stats { display: grid; grid-template-columns: repeat(3, auto) 1fr; gap: 14px; margin-bottom: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 16px 22px; display: flex; flex-direction: column; gap: 2px; }
.stat__num { font-family: var(--head); font-size: 28px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.stat__num--ok { color: var(--ok); }
.stat__num--wip { color: var(--orange); }
.stat__lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.stat--wide { justify-content: center; }
.stat__mail { font-weight: 700; color: var(--charcoal); font-size: 15px; }

.admin-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 13px 16px; font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); border-bottom: 1px solid var(--line); background: #fafbfc; white-space: nowrap; }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid #f0f2f6; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafbfc; }
.admin-mail { color: var(--muted); }
.admin-date { color: var(--muted); white-space: nowrap; font-size: 13px; }
.admin-empty { text-align: center; color: var(--muted); padding: 32px !important; }

.mini-bar { width: 90px; height: 7px; background: #eef1f5; border-radius: 4px; overflow: hidden; display: inline-block; vertical-align: middle; }
.mini-bar span { display: block; height: 100%; background: var(--red); border-radius: 4px; }
.admin-table small { color: var(--muted); margin-left: 8px; font-size: 12px; }

.tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.tag--ok { background: #e7f6ef; color: var(--ok); }
.tag--wip { background: #fdf1e3; color: #b9741a; }

.btn--sm { padding: 6px 14px; font-size: 13px; background: #fff; color: var(--charcoal); border-color: var(--line); }
.btn--sm:hover { border-color: #c7d0db; color: var(--red); }

.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 26px; max-width: 520px; }
.admin-form { display: flex; flex-direction: column; gap: 4px; }
.admin-form input { width: 100%; font: inherit; border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; }
.admin-form input:focus { outline: none; border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(44,48,59,.08); }
.admin-form .btn { margin-top: 16px; align-self: flex-start; }

.admin-summary { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 10px; overflow-x: auto; }
.admin-summary table { width: 100%; border-radius: 8px; }

@media (max-width: 720px) {
	.admin-stats { grid-template-columns: 1fr 1fr; }
	.stat--wide { grid-column: 1 / -1; }
}

/* ---------- Admin: inline editace adresáta ---------- */
.notify__view { display: flex; align-items: center; gap: 10px; }
.notify__edit { background: none; border: none; cursor: pointer; color: var(--muted); padding: 5px; border-radius: 6px; display: inline-flex; align-items: center; transition: .15s; }
.notify__edit:hover { color: var(--red); background: #f3f4f7; }
.notify__form { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.notify__form input { font: inherit; border: 1px solid var(--line); border-radius: 8px; padding: 8px 11px; min-width: 240px; color: var(--ink); }
.notify__form input:focus { outline: none; border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(44,48,59,.08); }
.btn--save { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--save:hover { background: #1c1f28; color: #fff; }
.notify__cancel { background: none; border: none; color: var(--muted); cursor: pointer; font: inherit; font-size: 13px; padding: 6px; }
.notify__cancel:hover { color: var(--red); }
