/* Minimalist Global Toast Styling */
/*
#global-toast {
    min-width: 320px;
    /* Frosted glass effect (modern and clean) */
    backdrop-filter: blur(10px);
    background-color: rgba(var(--bs-primary-rgb), 0.95) !important;
}

/* Ensure the toast doesn't have any residual 'jumping' logic */
.toast-container {
    pointer-events: none; /* Allows clicking things 'behind' the container gap */
}
.toast {
    pointer-events: auto; /* Re-enables clicking the toast itself */
}

.event-container-restricted {
    width: 100%;
    max-width: 860px; /* Force it to never get wider than this */
    margin-right: auto;
    margin-left: auto;
}