.toast{
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.toast-center-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: min(90vw, 420px);
    margin: 0;
    padding: 0 8px;
    z-index: 2000;
}

.toast-center-container .toast {
    width: 100%;
}

.toast.centered-toast .toast-header {
    justify-content: center;
    width: 100%;
}

.toast.centered-toast .toast-header .me-auto {
    margin-right: 0;
    width: 100%;
    text-align: center;
}

.toast.centered-toast .toast-body {
    text-align: center;
}

#toast-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;

    transition: display .15s ease-in-out;

}