/* ============================================
   TOAST NOTIFICATION STYLES
   ============================================ */

.toast-container {
    z-index: 9999;
}

.toast {
    min-width: 350px;
    border-left: 4px solid;
}

.toast.toast-success {
    border-left-color: #28a745;
}

.toast.toast-success .toast-header {
    background-color: #d4edda;
    color: #155724;
}

.toast.toast-warning {
    border-left-color: #ffc107;
}

.toast.toast-warning .toast-header {
    background-color: #fff3cd;
    color: #856404;
}

.toast.toast-error {
    border-left-color: #dc3545;
}

.toast.toast-error .toast-header {
    background-color: #f8d7da;
    color: #721c24;
}

.toast .toast-header {
    font-weight: 600;
}

.toast .toast-body {
    font-size: 14px;
    line-height: 1.5;
}

.toast-icon {
    margin-right: 8px;
}

/* Mobile toast */
@media (max-width: 575.98px) {
    .toast {
        min-width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
    }
    
    .toast-container {
        left: 1rem;
        right: 1rem;
        padding: 0;
    }
}
