/* ── Notification Toast ── */
.notification-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1050;
}

.notification-toast {
    background: var(--white, #ffffff);
    color: var(--black, #1a1a1a);
    border: 1px solid var(--white-dark, #e5e5e5);
    border-radius: .8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    min-width: 0;
    width: 36rem;
    max-width: calc(100vw - 3.2rem);
    overflow: hidden;
}

.notification-toast .toast-header {
    background: white;
    color: var(--black, #1a1a1a);
    border-bottom: 0;
    padding: .8rem 1.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notification-toast .toast-header #toast-icon {
    font-size: 1.4rem;
}

.notification-toast .toast-header strong {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black, #1a1a1a);
}

.notification-toast .toast-header .text-muted {
    font-size: 1.3rem;
    color: var(--black-light, #6e6e73) !important;
}

.notification-toast .toast-header .close {
    color: var(--black-light, #6e6e73);
    text-shadow: none;
    opacity: 1;
    font-size: 2rem;
    font-weight: 300;
    padding: .8rem;
    min-width: 4.4rem;
    min-height: 4.4rem;
    margin: 0;
}

.notification-toast .toast-header .close:hover {
    color: var(--black, #1a1a1a);
}

.notification-toast .toast-body {
    padding: 0 1.6rem 1.6rem;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--black-light, #6e6e73);
}

.notification-toast .toast-body a {
    color: var(--black, #1a1a1a);
    text-decoration: underline;
}

.notification-toast .toast-body a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .notification-toast-container {
        left: 1rem;
        right: 1rem;
    }
    .notification-toast {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}

.notification-toast .toast-header .text-muted:empty { display: none; }
.notification-toast .toast-header .close { margin-left: auto !important; }
.notification-toast .toast-header > i { display: none; }
.notification-toast :is(a, button):focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
