/*
 * Color variants and positioning for the global bazaar toast
 * (resources/views/partials/toast-notifications.blade.php). Overrides Bootstrap's
 * default .toast / .toast-header backgrounds so the whole toast adopts the
 * variant color, not just an inner stripe.
 *
 * Palette mirrors Bootstrap 4 .alert-* (pastel bg + dark text) so toasts match
 * the look of the inline alerts we previously rendered inside modals.
 */
#bazaar-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1080;
    min-width: 280px;
    max-width: 360px;
}


.bazaar-toast--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bazaar-toast--info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.bazaar-toast--warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.bazaar-toast--danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bazaar-toast--success .toast-header,
.bazaar-toast--info .toast-header,
.bazaar-toast--warning .toast-header,
.bazaar-toast--danger .toast-header {
    background-color: inherit;
    color: inherit;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}
