/* ── 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: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 32rem;
    max-width: 42rem;
    overflow: hidden;
    animation: notifySlideDown 0.3s ease-out;
}

@keyframes notifySlideDown {
    from { opacity: 0; transform: translateY(-1rem); }
    to   { opacity: 1; transform: translateY(0); }
}

.notification-toast .toast-header {
    background: var(--white-light, #f7f7f8);
    color: var(--black, #1a1a1a);
    border-bottom: 1px solid var(--white-dark, #e5e5e5);
    padding: 1rem 1.4rem;
    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.1rem;
    color: var(--black-light, #6e6e73) !important;
}

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

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

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

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

.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%;
    }
}
