/* Minimal Toast Styles for Frontend (Bootstrap-like) */
#toast-container {
    z-index: 9999;
}

.toast {
    display: block;
    min-width: 260px;
    max-width: 420px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1rem;
    margin-bottom: 10px;
    opacity: 1;
}

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

/* Utilities (subset) */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.border-0 {
    border: 0 !important;
}

.text-white {
    color: #fff !important;
}

/* Color helpers */
.text-bg-success,
.bg-success {
    background-color: #2d7f83 !important;
}

.text-bg-danger,
.bg-danger {
    background-color: #dc3545 !important;
}

.text-bg-warning,
.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.text-bg-info,
.bg-info {
    background-color: #0dcaf0 !important;
}

.text-bg-primary,
.bg-primary {
    background-color: #0d6efd !important;
}

.text-bg-secondary,
.bg-secondary {
    background-color: #6c757d !important;
}

/* Optional fade/slide effects from backend toast-effects.css will apply extra animations */