.live-channels-wrapper-26a37f61 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.live-channels-scroller-26a37f61 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 10px 4px;
    width: 100%;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.live-channels-scroller-26a37f61::-webkit-scrollbar {
    height: 6px;
}

.live-channels-scroller-26a37f61::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.live-channel-card-26a37f61 {
    display: flex;
    flex-direction: column;
    flex: 0 0 180px;
    width: 180px;
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

.live-channel-card-26a37f61:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.live-channel-card-26a37f61.is-live-26a37f61 {
    border-color: #ff0000;
}

.live-channel-logo-container-26a37f61 {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #000;
}

.live-channel-logo-26a37f61 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge-26a37f61 {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #ff0000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.live-dot-26a37f61 {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-26a37f61 1.5s infinite;
}

@keyframes pulse-26a37f61 {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.live-channel-info-26a37f61 {
    text-align: center;
}

.live-channel-name-26a37f61 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Nav Arrows styling */
.scroll-nav-btn-26a37f61 {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    transition: background 0.2s;
}

.scroll-nav-btn-26a37f61:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-nav-btn-26a37f61.prev-26a37f61 {
    left: -16px;
}

.scroll-nav-btn-26a37f61.next-26a37f61 {
    right: -16px;
}
