﻿.titulo_16 {
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #2F3E1E;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
}


/* Reset básico */

html, body, form {
    height: 100%;
    background: linear-gradient(to bottom, #DDE6D5, #C5D1B2);
    color: #2F3E1E;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Contenedor principal con padding izquierdo para alejar del menú */
.main-content {
    padding-left: 30px;
    padding-right: 15px;
}

/* Encabezado */
.header-wrapper {
    position: relative;
    z-index: 10;
    background-color: #fdfdfd;
}

    .header-wrapper::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        height: 12px;
        width: 100%;
        background: linear-gradient(to right, rgba(60, 80, 90, 0.6), rgba(44, 83, 100, 0), rgba(44, 83, 100, 0), rgba(60, 80, 90, 0.6)); /* degradado más afín al azul petróleo */
        pointer-events: none;
    }

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Estilos heredados */
.style1 {
    font-family: 'Segoe UI', Calibri, Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: #0D240A;
    height: 19px;
}

.style2 {
    height: 19px;
}

.style3 {
    font-family: 'Segoe UI Semibold', Calibri, Arial, Helvetica, sans-serif;
    font-size: 12pt;
    color: #0D240A;
    height: 17px;
}

/* Contenedor de cabecera flexible */
.header-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.logo, .title, .controls {
    flex: 1 1 100%;
    text-align: center;
}

    .logo img {
        max-width: 100%;
        height: auto;
    }

/* Responsive */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo, .title, .controls {
        flex: 1 1 100%;
    }

        .logo img {
            max-width: 80%;
        }

    .main-content {
        padding-left: 10px;
        padding-right: 10px;
    }
}
