/**
 * Toast notifications — keep visible above Chatwoot launcher (bottom-right).
 */
#toast-container.toast-bottom-right {
    bottom: 96px;
    right: 24px;
}

#toast-container.toast-bottom-right > div {
    width: min(360px, calc(100vw - 48px));
    opacity: 1;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    border-radius: 12px;
}

#toast-container.toast-bottom-right > .toast-info {
    background-color: #2563eb;
}

@media (max-width: 767.98px) {
    #toast-container.toast-bottom-right {
        bottom: 88px;
        right: 16px;
        left: 16px;
    }

    #toast-container.toast-bottom-right > div {
        width: auto;
        max-width: none;
    }
}
