/* Live Lottery Results Styles */
.live-banner {
    display: block;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
}

.live-dot {
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.countdown-timer-container {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.drawing-status-container {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.25rem;
}

.number-random {
    font-weight: bold;
    color: #dc3545;
}

.spinner-gif {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}
