:root {
    --t-primary:       #233876;
    --t-primary-ch:    35 56 118;
    --t-secondary:     #5b6a9c;
    --t-surface:       #ffffff;
    --t-surface-alt:   #f5f7fc;
    --t-border-light:  #eef1fa;
    --t-border:        #e8ecf7;
    --t-border-strong: #d6ddf0;
    --t-error:         #d1242f;
    --t-success:       #1a7f37;
    --t-warning:       #a86500;
}
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    background: var(--t-surface);
    color: var(--t-primary);
}
.topbar {
    background: var(--t-primary);
    color: var(--t-surface);
    padding: 4px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 32px;
}
.topbar-left { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.topbar-brand { font-weight: 700; font-size: 15px; }
.topbar-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar-nav a, .topbar-account a {
    color: var(--t-surface);
    font-size: 13px;
    text-decoration: none;
    opacity: .9;
}
.topbar-nav a:hover, .topbar-account a:hover { opacity: 1; text-decoration: underline; }
.topbar-account { display: flex; gap: 16px; align-items: center; }
.topbar-account button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: var(--t-surface);
    font-size: 13px;
    opacity: .9;
}
.topbar-account button:hover { opacity: 1; }
.topbar-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: var(--t-surface);
    text-decoration: none;
    opacity: .85;
    transition: opacity .15s, background .15s;
}
.topbar-icon-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .15);
    text-decoration: none;
}
.account-menu { position: relative; }
.account-menu > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--t-surface);
    font-size: 13px;
    font-weight: 600;
    opacity: .9;
    padding: 4px 8px;
    border-radius: 6px;
    user-select: none;
    transition: opacity .15s, background .15s;
}
.account-menu > summary::-webkit-details-marker { display: none; }
.account-menu > summary::marker { display: none; content: ''; }
.account-menu > summary:hover { opacity: 1; background: rgba(255, 255, 255, .15); }
.account-chevron { font-size: 10px; transition: transform .2s; }
.account-menu[open] .account-chevron { transform: rotate(180deg); }
.account-menu-card {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--t-surface);
    border: 1px solid var(--t-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgb(var(--t-primary-ch) / .18);
    min-width: 200px;
    z-index: 500;
    overflow: hidden;
}
.account-menu-card a,
.account-menu-card button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    font: inherit;
    font-size: 13px;
    color: var(--t-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .12s;
}
.account-menu-card a:hover,
.account-menu-card button:hover {
    background: var(--t-surface-alt);
    text-decoration: none;
}
.account-menu-card i { width: 14px; text-align: center; opacity: .7; }
.menu-divider { height: 1px; background: var(--t-border-light); margin: 4px 0; }
.logout-item { color: var(--t-error) !important; }
.logout-item:hover { background: #fff5f5 !important; }
.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.user-badge-name { font-weight: 600; }
.user-badge-email { opacity: .75; }
.user-badge-role {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.banner { background: var(--t-primary); color: var(--t-surface); padding: 24px 32px; }
.banner h1 { color: var(--t-surface); margin: 0; }
.content { padding: 24px 32px; }
p.subtitle { color: var(--t-primary); margin-top: 0; font-size: 14px; }

/* Copied from traki/traki/static/css/traki.css — see that file. */
.t-section + .t-section { margin-top: 32px; }
.t-section-heading {
    color: var(--t-primary);
    font-size: 18px;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--t-primary);
}
.t-wide-details-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 32px;
    margin: 16px 0 0;
}
.t-wide-details-item dt {
    margin: 0;
    color: var(--t-secondary);
    font-size: 12px;
    font-weight: 400;
}
.t-wide-details-item dd {
    margin: 4px 0 0;
    margin-inline-start: 0;
    color: var(--t-primary);
    font-size: 14px;
    font-weight: 700;
}
.t-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 0;
}

.n-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    padding: 9px 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: opacity .15s ease;
}
.n-button:hover { opacity: .92; }
.n-button:disabled { opacity: .5; cursor: not-allowed; }
.n-button.full-width { width: 100%; }
.n-button.small { padding: 6px 12px; font-size: 12px; }
.n-button.tiny { padding: 3px 8px; font-size: 11px; gap: 4px; }
.n-button.icon-button { padding: 9px; }
.n-button.icon-button.small { padding: 6px; }
.n-button.icon-button.tiny { padding: 3px; }

.n-button.primary.filled { background: var(--t-primary); color: var(--t-surface); }
.n-button.primary.outlined {
    background: transparent;
    color: var(--t-primary);
    border-color: var(--t-primary);
}
.n-button.secondary.filled { background: var(--t-secondary); color: var(--t-surface); }
.n-button.secondary.outlined {
    background: transparent;
    color: var(--t-secondary);
    border-color: var(--t-secondary);
}
.n-button.success.filled { background: var(--t-success); color: var(--t-surface); }
.n-button.success.outlined {
    background: transparent;
    color: var(--t-success);
    border-color: var(--t-success);
}
.n-button.error.filled { background: var(--t-error); color: var(--t-surface); }
.n-button.error.outlined {
    background: transparent;
    color: var(--t-error);
    border-color: var(--t-error);
}
.n-button.warning.filled { background: var(--t-warning); color: var(--t-surface); }
.n-button.warning.outlined {
    background: transparent;
    color: var(--t-warning);
    border-color: var(--t-warning);
}
.n-button.info.filled { background: var(--t-primary); color: var(--t-surface); }
.n-button.info.outlined {
    background: transparent;
    color: var(--t-primary);
    border-color: var(--t-primary);
}

.n-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: var(--t-surface);
    border-radius: 50%;
    animation: n-spin .6s linear infinite;
}
.n-button.outlined .n-spinner {
    border-color: rgb(var(--t-primary-ch) / .3);
    border-top-color: currentColor;
}
@keyframes n-spin { to { transform: rotate(360deg); } }

dialog {
    border: none;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 12px 32px rgb(var(--t-primary-ch) / .25);
}
dialog::backdrop { background: rgb(var(--t-primary-ch) / .35); }
.dialog-content { padding: 20px; min-width: 280px; }
.dialog-actions { display: flex; gap: 8px; margin-top: 16px; }
.c-primary { color: var(--t-primary); }

.n-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgb(var(--t-primary-ch) / .35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.n-modal {
    background: var(--t-surface);
    border-radius: 10px;
    width: min(480px, calc(100vw - 32px));
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 12px 32px rgb(var(--t-primary-ch) / .25);
}
.n-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--t-border-light);
}
.n-modal-title { margin: 0; font-size: 16px; color: var(--t-primary); }
.n-modal-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.n-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--t-secondary);
    font-size: 15px;
    padding: 4px;
}
.n-modal-close:hover { color: var(--t-primary); }
.n-modal-body { padding: 20px; }
.n-modal-footer {
    padding: 12px 20px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
body.modal-open { overflow: hidden; }

.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--t-primary);
}
.modal-field input, .modal-field select {
    padding: 8px 10px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    font: inherit;
    background: var(--t-surface-alt);
    color: var(--t-secondary);
}

/* ── n-flex / gap utilities ──────────────────────────────── */
.n-flex { display: flex; }
.n-col { flex-direction: column; }
.gap-s { gap: 6px; }
.gap-m { gap: 12px; }
.gap-l { gap: 20px; }
.gap-xl { gap: 32px; }
.align-center { align-items: center; }
.jus-center { justify-content: center; }
.h-100 { height: 100%; }

/* ── n-tooltip ───────────────────────────────────────────── */
.n-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.n-tooltip-icon {
    color: var(--t-secondary);
    font-size: 13px;
    cursor: help;
}
.n-tooltip-box {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    min-width: 160px;
    max-width: 260px;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--t-primary);
    color: var(--t-surface);
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgb(0 0 0 / .18);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.n-tooltip-label { font-weight: 700; }

/* ── n-popper ────────────────────────────────────────────── */
.n-popper-wrapper { position: relative; display: inline-block; }
.n-popper-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 300;
    min-width: 160px;
    background: var(--t-surface);
    border: 1px solid var(--t-border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgb(var(--t-primary-ch) / .18);
}
.n-popper-panel--right { left: auto; right: 0; }

/* ── n-checkbox ──────────────────────────────────────────── */
.n-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--t-border-strong);
    border-radius: 4px;
    cursor: pointer;
    color: var(--t-surface);
    font-size: 11px;
    transition: background .15s, border-color .15s;
}
.n-checkbox--checked {
    background: var(--t-primary);
    border-color: var(--t-primary);
}

/* ── t-input-history / t-save-loader ────────────────────── */
.t-input-history {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--t-secondary);
}
.t-input-history-restore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--t-primary);
    cursor: pointer;
    padding: 2px;
}
.t-save-loader {
    display: inline-flex;
    align-items: center;
    color: var(--t-success);
    font-size: 13px;
}

/* ── t-select / t-text-input shared field chrome ────────── */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: max-content;
}
.input-container.full-width { width: 100%; }
.field-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--t-primary);
}
.n-optional-label {
    font-weight: 400;
    color: var(--t-secondary);
    font-style: normal;
}
.select, .textfield {
    padding: 8px 10px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    font: inherit;
    background: var(--t-surface);
    color: var(--t-primary);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.select.full-width, .textfield.full-width { width: 100%; }
.select:hover, .textfield:hover { border-color: var(--t-secondary); }
.select:focus, .textfield:focus {
    outline: none;
    border-color: var(--t-primary);
    box-shadow: 0 0 0 3px rgb(var(--t-primary-ch) / .12);
}
.select.disabled, .textfield.disabled {
    background: var(--t-surface-alt);
    color: var(--t-secondary);
    cursor: not-allowed;
}
.select.disabled:hover, .textfield.disabled:hover {
    border-color: var(--t-border-strong);
}
.textfield.error { border-color: var(--t-error); }
.invalid-field-error {
    font-size: 12px;
    color: var(--t-error);
}

/* ── t-code-editor ──────────────────────────────────────────────
   A highlighted <pre> sits behind a transparent-text <textarea> -
   the two must share an identical box model (font, padding, line
   height, border) pixel-for-pixel or the colored text drifts out of
   alignment with what's actually typed. Header bar shows
   filename/language above both layers. */
.t-code-editor-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    overflow: hidden;
}
.t-code-editor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--t-surface-alt);
    border-bottom: 1px solid var(--t-border);
    font-size: 12px;
}
.t-code-editor-filename { color: var(--t-primary); font-weight: 600; }
.t-code-editor-language {
    color: var(--t-secondary);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.t-code-editor-editor-area {
    position: relative;
    flex: 1;
    min-height: 0;
    background: var(--t-surface);
}
.t-code-editor-highlight,
.t-code-editor-textarea {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 10px 12px;
    border: none;
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
    line-height: 1.5;
    tab-size: 4;
    white-space: pre;
    overflow: auto;
}
.t-code-editor-highlight {
    pointer-events: none;
    color: var(--t-primary);
}
.t-code-editor-highlight code {
    font: inherit;
    white-space: inherit;
}
.t-code-editor-textarea {
    width: 100%;
    height: 100%;
    resize: none;
    background: transparent;
    color: transparent;
    caret-color: var(--t-primary);
}
.t-code-editor-textarea:focus {
    outline: none;
}
.t-code-editor-container:focus-within {
    box-shadow: inset 0 0 0 2px rgb(var(--t-primary-ch) / .12);
}

/* Python token colors - a classic, readable light-theme palette. */
.tk-keyword { color: #0000ff; font-weight: 600; }
.tk-builtin { color: #267f99; }
.tk-string { color: #a31515; }
.tk-comment { color: #008000; font-style: italic; }
.tk-number { color: #098658; }
.tk-decorator { color: #af00db; }

/* ── t-image-input ─────────────────────────────────────────────
   `.image-field input.textfield` (rather than the bare `.textfield`
   rule above) is deliberate: every field in these props modals sits
   inside a `.modal-field` wrapper, and `.modal-field input` (below)
   has one extra type-selector over plain `.textfield`, so it would
   otherwise win the cascade and silently flatten this input back to
   the older, unstyled look. Qualifying under `.image-field` gives
   this enough specificity to actually apply. ─ */
.t-image-input .image-field {
    display: flex;
    align-items: center;
    gap: 8px;
}
.t-image-input .image-field input.textfield {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    font: inherit;
    background: var(--t-surface);
    color: var(--t-primary);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.t-image-input .image-field input.textfield:hover {
    border-color: var(--t-secondary);
}
.t-image-input .image-field input.textfield:focus {
    outline: none;
    border-color: var(--t-primary);
    box-shadow: 0 0 0 3px rgb(var(--t-primary-ch) / .12);
}
.image-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    background: var(--t-surface-alt);
    color: var(--t-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s ease, border-color .15s ease;
}
.image-upload-label:hover {
    background: rgb(var(--t-primary-ch) / .08);
    border-color: var(--t-primary);
}
.image-url-preview {
    display: block;
    margin-top: 10px;
    max-width: 100%;
    max-height: 140px;
    border-radius: 6px;
    object-fit: contain;
    border: 1px solid var(--t-border);
    background: var(--t-surface-alt);
    padding: 4px;
}

/* ── t-link-list-input ───────────────────────────────────────────
   Scoped under the .t-link-list marker (rather than the bare
   .links-editor/.link-row classes) on purpose: those bare classes are
   still used by the older, unstyled-native-input links-editor markup
   in the Advanced/Raw props modals (out of scope here, must keep
   working as-is) - portal-level CSS (e.g. pieri's page_edit.css)
   already styles that raw usage with hardcoded colors and loads
   *after* this file, so an unscoped rule here would just lose the
   cascade. Qualifying every rule under .t-link-list gives this
   component's own markup enough specificity to win regardless of
   load order, without touching the older shared classes at all. ─ */
.t-link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.t-link-list .link-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.t-link-list .link-row input.textfield {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    font: inherit;
    background: var(--t-surface);
    color: var(--t-primary);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.t-link-list .link-row input.textfield:hover {
    border-color: var(--t-secondary);
}
.t-link-list .link-row input.textfield:focus {
    outline: none;
    border-color: var(--t-primary);
    box-shadow: 0 0 0 3px rgb(var(--t-primary-ch) / .12);
}
.link-list-add-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px dashed var(--t-border-strong);
    border-radius: 6px;
    color: var(--t-secondary);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.link-list-add-btn:hover {
    background: rgb(var(--t-primary-ch) / .06);
    border-color: var(--t-primary);
    color: var(--t-primary);
}

/* ── Footer Brand's social_links rows (icon locked, url editable) ─
   One-off shape, not worth a full component for a single usage -
   CSS polish only. Scoped past portal-level `.editor-social-link-row
   input` for the same load-order reason as above. ─ */
.editor-social-link-row input.textfield {
    padding: 8px 10px;
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    font: inherit;
    background: var(--t-surface);
    color: var(--t-primary);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.editor-social-link-row input.textfield:hover {
    border-color: var(--t-secondary);
}
.editor-social-link-row input.textfield:focus {
    outline: none;
    border-color: var(--t-primary);
    box-shadow: 0 0 0 3px rgb(var(--t-primary-ch) / .12);
}

/* ── t-search-select ──────────────────────────────────────────
   Same shape as traki_portal's wpc-search-select (visually - not a
   shared implementation, see traki/CLAUDE.md's wpc-*/t-* note): a
   generic reusable version for pickers outside a page-builder
   context, e.g. a plain admin form's "search and pick a record"
   field. ─ */
.t-search-select {
    position: relative;
}
.t-search-select__input {
    width: 100%;
}
.t-search-select__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--t-surface);
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgb(var(--t-primary-ch) / .10);
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
}
.t-search-select__item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--t-border-light);
}
.t-search-select__item:last-child {
    border-bottom: none;
}
.t-search-select__item:hover {
    background: var(--t-surface-alt);
}
.t-search-select__header {
    font-size: 13px;
    font-weight: 600;
    color: var(--t-primary);
}
.t-search-select__value-display {
    font-size: 12px;
    color: var(--t-secondary);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.t-search-select__empty {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--t-secondary);
    background: var(--t-surface);
    border: 1px solid var(--t-border-strong);
    border-radius: 6px;
    z-index: 100;
}

/*
 * t-message (traki_uicomponent/static/js/components/t-message.js) -
 * this project's own toast stack. Previously had NO styling at all on
 * any satellite (kibela keeps its own hand-copied `base.css`, per that
 * project's documented convention of not consuming this package's CSS
 * directly, and had already styled its own copy - this block ports
 * that same design here so pieri/serdika/asti/future satellites get
 * an identical look via the shared package instead of the bare
 * unstyled <div>+<button> they were rendering before). Keep both
 * copies in sync if this ever changes - see kibela/static/css/base.css's
 * own .toast rules, which mirror this block intentionally.
 */
.toast-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
    z-index: 3000;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    padding: 12px 14px 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--t-surface);
    box-shadow: 0 10px 24px rgb(0 0 0 / .18), 0 2px 6px rgb(0 0 0 / .08);
    pointer-events: auto;
    animation: t-toast-in .2s ease-out;
}
@keyframes t-toast-in {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast-success { background: var(--t-success); }
.toast-error { background: var(--t-error); }
.toast-warning { background: var(--t-warning); }
.toast-info { background: var(--t-primary); }
.toast::before {
    font: normal normal 900 16px/1 "Font Awesome 6 Free";
    flex-shrink: 0;
}
.toast-success::before { content: "\f058"; }   /* fa-circle-check */
.toast-error::before { content: "\f057"; }     /* fa-circle-xmark */
.toast-warning::before { content: "\f06a"; }   /* fa-circle-exclamation */
.toast-info::before { content: "\f05a"; }      /* fa-circle-info */
.toast-text {
    flex: 1;
    word-break: break-word;
}
.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: 18px;
    color: var(--t-surface);
    opacity: .75;
    cursor: pointer;
}
.toast-close:hover { opacity: 1; }
}
