.sv-livestream-wrapper {
    background-color: transparent;
    padding: 0;
}

.sv-channel-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sv-channel-tab {
    background-color: #212429;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sv-channel-tab:hover {
    background-color: #32363d;
}

.sv-channel-tab.active {
    background-color: #ffd040;
    color: #000000;
}

.sv-video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.sv-video-player {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.sv-live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sv-live-badge svg {
    animation: sv-pulse 1.5s infinite;
}

@keyframes sv-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Hide the seek bar / timeline in the video player */
.sv-video-player::-webkit-media-controls-timeline {
    display: none !important;
}

.sv-video-player::-webkit-media-controls-current-time-display {
    display: none !important;
}

.sv-video-player::-webkit-media-controls-time-remaining-display {
    display: none !important;
}
