
/* LIVE PULSING */
        
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            background-color: #e53935;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            position: relative;
            animation: pulse 1s infinite;
        }
        
        .live-dot {
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: 50%;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
            }
        }
        
       
       

/*LIVE TV STYLING */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    /* border-radius: 8px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    padding: 0 8px;
}

.video-title h6 {
    font-weight: 600;
    color: #333;
}