@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
    background-color: #F5F5F5;
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 1.42857143;
    font-weight: normal;
    color: #212529;
}

@media (min-width: 768px) {
    #container-indexadores {
        width: 92%;
        margin: 120px 7.5% 0% 3.15%;
    }
}

@media (max-width: 768px) {
    #container-indexadores {
        width: 92%;
        margin: -10px 7.5% 0% 3.15%;
    }
}

/* Secciones personalizadas - usar ID para evitar conflictos */
#customSections {
    margin: 40px 0;
}

#customSections > h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

/* Contenedores de sección - usar clases con prefijo específico */
.metrics-section-container {
    background-color: #F5F5F5;
    border-radius: 1px;
    margin-bottom: 30px;
    overflow: hidden;
}

.metrics-section-header {
    background-color: #ffc814; 
    width: 100%; 
    display: inline-block; 
    font-size: 18px; text-align: 
    left; 
    padding: 0.3%;
}

#titleSection {
    font-size: 18px;
    font-weight: bold;
    margin: 0px 40px; 
    color: #02027e;
}

.metrics-section-content {
    padding: 40px 80px;
    padding-top: 30px;

}

/* Mensaje cuando no hay datos */
.metrics-no-data,
.metrics-unknown-function {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
}

.metrics-error-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

/* Mensaje cuando no hay secciones */
#noSectionsMessage {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 40px 0;
    padding: 60px 40px;
    text-align: center;
}

#noSectionsMessage .message-content {
    max-width: 500px;
    margin: 0 auto;
}

#noSectionsMessage .message-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

#noSectionsMessage h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 24px;
}

#noSectionsMessage p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 16px;
}


/* Responsive */
@media (max-width: 768px) {
    .page_metricsTemplate .container {
        padding: 0 15px !important;
    }
    
    .metrics-section-header {
        padding: 15px 20px;
    }
    
    #titleSection {
        font-size: 18px;
    }
    
    .metrics-section-content {
        padding: 30px 20px;
    }
    
    #noSectionsMessage {
        padding: 40px 20px;
    }
}