.toast-container {
    position: fixed !important;
    bottom: 20px;
    inset-inline-end: 20px;
    z-index: 2000 !important;
    pointer-events: none;
}

    .toast-container .toast {
        z-index: 2000 !important;
        pointer-events: auto;
    }

.toast-progress {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    width: 0%;
    transition: width linear;
}

.toast {
    color: #fff !important;
}

    .toast.toast-success {
        background-color: #198754 !important;
    }

    .toast.toast-error {
        background-color: #dc3545 !important;
    }
