﻿.toastContainer {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1055;
    pointer-events: none;
}

#toastWrapper-js {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Toast styling */
.toast {
    border: 1px solid #33343A;
    border-radius: .5em;
    box-shadow: 0 0 8px 1px #b3b3b3 !important;
    width: 550px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .toast {
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
    }
}

/* Make the toast icon larger and aligned */
.toast-icon {
    width: 24px;
    height: 24px;
}

.toast-header {
    background-color: rgb(233 236 239);
    font-size: 1.25rem;
    font-weight: 600;
}

.toast-body {
    background-color: rgb(255 255 255);
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em;
}



/* Improve close button appearance */
.toast .btn-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    opacity: 0.7;
}

    .toast .btn-close:hover {
        opacity: 1;
    }
