#broadcast-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%); /* Start below the screen */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 2000;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
}

#broadcast-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}
