/* ESTILOS MÓVILES PARA PANEL DE INDICADORES */
.mobile-info-panel {
    max-width: 100%;
    margin: 0 auto;
}

.clasificacion-circle-mobile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.clasificacion-circle-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clasificacion-item-mobile {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.clasificacion-item-mobile.active {
    opacity: 1;
}

.clasificacion-item-mobile.active .clasificacion-circle-mobile {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.clasificacion-label-mobile {
    font-size: 0.7rem;
    color: #333;
    margin: 10px 0 0 0;
    line-height: 1.2;
}

.indicadores-gallery-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-evenly;
    min-height: 80px;
    padding: 14px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
}

.indicador-item-mobile {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
}


.buttons-section-mobile .island-button {
    transition: all 0.2s ease;
}

.buttons-section-mobile .island-button.active_btn {
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Ajustes responsivos adicionales */
@media (max-width: 400px) {
    .clasificacion-circle-mobile {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .clasificacion-label-mobile {
        font-size: 0.65rem;
    }
    
    .indicador-item-mobile {
        width: 60px;
        height: 60px;
    }
}

/* Leyenda de indicador móvil */
.indicador-leyenda-mobile {
    width: 100%;
    /* background-color: #5891b3; */
    color: white;
    padding: 12px 15px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.indicador-item-mobile {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.indicador-item-mobile.selected {
    transform: scale(1.15);
}

.indicador-item-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s ease;
}

.indicador-item-mobile.selected img {
    box-shadow: 0 4px 12px rgba(14, 102, 141, 0.4);
    /* border: 2px solid #0e668d; */
}

/* Ajuste responsivo para la leyenda */
@media (max-width: 400px) {
    .indicador-leyenda-mobile {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}