/* =========================================================
   App toasts
   ========================================================= */

.toast-container {
    z-index: 3000;
}

.toast {
    border-radius: var(--app-radius-md);
    box-shadow: var(--app-shadow-md);
    overflow: hidden;
}

.toast-body {
    font-weight: 500;
}

.toast .btn-close {
    opacity: 0.8;
}

/* =========================================================
   Mobile toasts
   ========================================================= */

@media (max-width: 991.98px) {
    .toast-container {
        top: var(--mobile-topbar-height) !important;
        left: 10px !important;
        right: 10px !important;
        padding: 0 !important;
    }

    .toast {
        width: 100%;
        max-width: none;
        border-radius: 16px;
    }

    .toast-body {
        font-size: 0.92rem;
    }
}