/* Live polling toasts — extracted from base.html */
.live-toasts {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
}
.live-toast {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: liveToastIn 0.3s ease-out;
}
.live-toast a.btn-light {
    background: rgba(255,255,255,0.95);
    color: #0d6efd;
    font-weight: 600;
}
.live-toast button.live-toast-dismiss {
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 4px;
    opacity: 0.8;
}
.live-toast button.live-toast-dismiss:hover { opacity: 1; }
@keyframes liveToastIn {
    from { transform: translateX(20px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}
