/*!
 * Bootstrap 5 Toasts Extension
 * Minimal styles for Toast component
 */

.toast-container {
    position: fixed;
    z-index: 1090;
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    background-color: rgba(255,255,255,.95);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .5rem;
    opacity: 0;
    transition: opacity .15s linear;
}

.toast.show {
    opacity: 1;
}

.toast.hide {
    display: none;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top-left-radius: calc(.5rem - 1px);
    border-top-right-radius: calc(.5rem - 1px);
}

.toast-body {
    padding: .75rem;
}


