/* ============================================
   PLANEA TV - Estilos de Canales
   ============================================ */

/* Lista de Canales */
.channel-0-2-144 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

.ChannelInfo-Link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ChannelInfo-Link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.number {
    font-size: 18px;
    margin-right: 10px;
    min-width: 30px;
    text-align: right;
    color: #fff;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.channelListItem-0-2-140 {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 4px;
}

.channelListItem-0-2-140:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.channelListItem-0-2-140.active {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.channelListItem-0-2-140:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Responsive para canales */
@media screen and (max-width: 480px) {
    .channelListItem-0-2-140 {
        width: 100% !important;
        margin: 3px;
        padding: 8px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .channelListItem-0-2-140 {
        width: calc(50% - 6px);
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .channelListItem-0-2-140 {
        width: calc(33.333% - 10px);
    }
}

@media screen and (min-width: 1201px) {
    .channelListItem-0-2-140 {
        width: calc(25% - 10px);
    }
}

@media screen and (min-width: 1920px) {
    .channelListItem-0-2-140 {
        width: calc(20% - 10px);
    }
}

