﻿/* === Bundlzz Toastr Theme Overrides === */

/* Make background colors more solid and text bolder */
.toast-success {
    background-color: #28a745 !important; /* vivid green */
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important;
}

.toast-error {
    background-color: #dc3545 !important; /* bright red */
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important;
}

.toast-warning {
    background-color: #f7941d !important; /* Bundlzz orange */
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important;
}

.toast-info {
    background-color: #17a2b8 !important; /* teal-blue info */
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important;
}

/* Optional: make icon and close button more visible */
.toast .toast-close-button {
    color: #fff !important;
    opacity: 0.9 !important;
}

.toast-title {
    font-weight: 700;
    font-size: 15px;
}

.toast-message {
    font-size: 14px;
}
/* === Fix Toastr Visibility and Opacity === */
.toast {
    opacity: 1 !important; /* make fully visible always */
    transition: none !important; /* disable fade dimming */
}

    /* Optional: still keep hover highlight, but subtle */
    .toast:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }
