.cmrp-conteo-container {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
        
.cmrp-reproductor-lista {
    background: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    &:nth-child(1) {
        width: 100%;
        grid-column: 1 / 3;
        height: 30vh;
    }
}
        
.cmrp-lista-canciones {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 600px) {
    .cmrp-lista-canciones {
        grid-template-columns: 1fr;
    }
}

.cmrp-item-lista {
    background: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: solid 1px var(--main-accent-color);
    position: relative;
    .cmrp-posicion {
            font-weight: bold;
            margin-right: 15px;
            min-width: 30px;
            color: #ffffff;
            background: var(--main-accent-color);
            padding: 5px;
            border-radius: 5px;
    }
    .cmrp-info {
        flex-grow: 1;
        min-width: 0;
        margin: 10px;
    }

    .cmrp-titulo {
        font-weight: bold;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.5rem;
        color: #fcf9f9;
    }

    .cmrp-artista {
        color: #fcf9f9;
        font-size: 0.9em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    &:nth-child(1) {
        width: 100%;
        grid-column: 1 / 3;
        height: 40vh;
        background: #333;
        background: linear-gradient(0deg, rgb(35, 84, 175) 0%, rgb(34, 115, 236) 100%);
        &::before{
            content: "TocaExitos";
            position: absolute;
            top: -20px;
            right: 10px;
            background: var(--main-accent-color);
            padding: 10px;
            border-radius: 23px;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 0.8rem;
        }
        .cmrp-posicion{
            position: absolute;
            top: -5px;
            width: 80px;
            height: 80px;
            font-size: 3rem;
            transform: rotate(-21deg);
            left: -5px;
            color: #fff;
            border-radius: 10px;
        }
        .cmrp-info{
            
            &::before{
                content: "La canción más escuchada de la semana";
                color: #fff;
            }
        }
        .cmrp-imagen {
            height: 100%;
            width: auto;
        }
        .cmrp-titulo {
            font-size: 2rem;

        }
    }
}

.cmrp-cancion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

.cmrp-imagen img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
}

.cmrp-youtube-video{
    position: fixed;
    top: 0;
    left: 0;    
    width: 100%;
    height: 100%;   
    background: rgba(0,0,0,0.8);
    display: flex;  
    justify-content: center;
    align-items: center;
    z-index: 1000;
    iframe {
        width: 80%;
        height: 80%;
        border: none;
        border-radius: 8px;
    }
    &.hidden {
        display: none;
    }
}

@media (max-width: 600px) {
    .cmrp-item-lista {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cmrp-posicion {
        margin-bottom: 5px;
    }
}

.cmrp-reproductor-lista{
    display: none;
}
.cmrp-reproductor-lista.active {
    display: block;
}

.conteo-front{
    overflow: hidden;
    .cmrp-item-lista {
        &:nth-child(1) {
            width: 100%;
            grid-column: 1 / 3;
            height: 150px;
            background: #333;
            background: linear-gradient(0deg, rgba(51, 51, 51, 1) 0%, rgba(234, 67, 53, 1) 100%);
            &::before{
                content: "TocaExitos";
                position: absolute;
                top: -16px;
                right: 10px;
                background: var(--main-accent-color);
                padding: 10px;
                border-radius: 23px;
                color: #fff;
                text-transform: uppercase;
                font-weight: bold;
                font-size: 0.7rem;
            }      
            .cmrp-imagen {
                height: auto;
                width: 37%;
            }
            .cmrp-titulo {
                font-size: 2rem;
            }
        }
    }
    .cmrp-lista-canciones {
        margin-top: 15px;
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .cmrp-conteo-container{
        max-width: 100%;
    }
}