/* Global Toast Notification System */
#toastContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999 !important;
    min-width: 350px;
    max-width: 450px;
}

.toast {
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Brand Colors for Toasts */
.toast.bg-success {
    background-color: #107c10 !important;
}

.toast.bg-danger {
    background-color: #d13438 !important;
}

.toast.bg-warning {
    background-color: #ff8c00 !important;
    color: #000 !important;
}

.toast.bg-primary {
    background-color: #0078d4 !important;
}

.toast-body {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent !important;
    color: inherit !important;
}

/* Ensure toasts appear above everything */
.toast-container {
    z-index: 99999 !important;
}
