<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    min-height: 110vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Times New Roman", Times, serif;
    overflow-x: auto; /* Eliminar el desplazamiento horizontal */
}

/* Table Styles */
main.table {
    width: 92vw;
    height: 100vh;
    background-color: #fff;
    border-radius: 0;
    overflow: auto;
}

.table__header {
    width: 100%;
    height: auto;
    /*background: #fff0 url(images/head.png) center / cover no-repeat;*/
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #910048;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: bold;
}

.table-container {
    position: relative;
    padding: 1rem;
}

.text-right {
        position: static;
        width: 100%;
        margin-top: 1rem;
        border-radius: 0;
}

.table__body {
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    font-size: 0.9em;
    position: static;
    top: 0;
}

.table__body table {
    width: 100%;
    table-layout: auto;
}

.table__body tr td {
    font-size: 0.9em;
    max-width: 200px;
    padding: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    border: 2px solid;
    border-color: #002d72;
}

/* Button Styles */
.botones {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que los botones se ajusten en múltiples líneas */
    gap: 10px; /* Espacio entre los botones */
}

.botones &gt; div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.requisitos {
    background-color: #002d72;
    border: 1px solid #000;
    color: #fff;
    padding: 20px;
    border-radius: 0px;
    text-align: center;
    margin-top: 1rem;
}

.btn-pba,.btn-eng, .btn-sco, .btn-gsc, .btn-mti, .btn-mba, .btn-asu, .btn-pai {
    background-color: #ebac04;
    border: 1px solid #000;
    border-radius: 18px;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
    position: relative; /* Necesario para posicionar el tooltip */
    margin: 5px; /* Margen alrededor de cada botón */
    animation: bounce 1s infinite; /* Aplica la animación de bounce */
}


/* Estilos para el tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 220px; /* Aumentado a 220px */
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -110px; /* Cambiado a -110px para centrar el tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.btn-pba:hover, .btn-eng:hover, .btn-sco:hover, .btn-gsc:hover, .btn-mti:hover, .btn-mba:hover, .btn-asu:hover, .btn-pai:hover {
    transform: scale(1.1); /* Efecto de zoom */
    background-color: #910048;
    color: #FFF;
}


/* Estilos para los botones de texto */
.btn-pba, .btn-eng, .btn-sco, .btn-gsc, .btn-mti, .btn-mba, .btn-asu,.btn-pai {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    /*text-transform: uppercase;*/
}

/* Input Group Styles */
.table__header .input-group {
    width: 5%;
    height: 55%;
    background-color: #fff5;
    padding: 0 .8rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.table__header .input-group:hover {
    width: 45%;
    background-color: #fff8;
    box-shadow: 0 .1rem .4rem #0002;
}

.table__header .input-group img {
    width: 1.2rem;
    height: 1.2rem;
}

.table__header .input-group input {
    width: 100%;
    padding: 0 .5rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;
}

/* Media Queries */
@media print {
    .table, .table__body {
        overflow: visible;
        height: auto !important;
        width: auto !important;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: auto;
    }

    main.table {
        width: 100%;
        height: auto;
        overflow-x: auto;
    }

    .table__header {
        width: 100%;
        padding: 0.5rem;
        height: 150px; /* Altura fija para móviles */
    }

    .table__body {
        overflow-x: auto;
    }

    .table__body table {
        min-width: 100%;
    }

    .table__body tr {
        display: table-row;
    }

    .table__body tr td {
        display: table-cell;
        font-size: 0.8em;
        padding: 0.5rem;
        white-space: nowrap;
    }

    thead th {
        position: sticky;
        top: 0;
        background-color: #002d72;
        z-index: 10;
    }

    .text-right {
        position: static;
        width: 100%;
        margin-top: 1rem;
        border-radius: 0;
    }

    .requisitos {
        font-size: 0.9em;
        padding: 10px;
    }

.botones {
    display: -webkit-inline-box;
    width: 100%; /* Ajusta al 100% del contenedor */
    flex-wrap: nowrap;
    overflow-x: auto; /* Permite desplazamiento horizontal */
    gap: 10px; /* Espacio entre los botones */
    justify-content: flex-start;
}

.botones &gt; button {
    flex: 0 0 auto; /* Mantiene el tamaño de cada botón */
}

    

}

@media (max-width: 480px) {
    .table__header {
        height: 100px; /* Altura más pequeña para móviles muy pequeños */
    }

    .botones &gt; div {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    td:not(:first-of-type) {
        min-width: 12.1rem;
    }
}

/* Scrollbar Styles */
.table__body::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

.table__body::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}

.table__body:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

/* Table Layout */
table {
    width: 100%;
    table-layout: fixed;
}

td img {
    width: 36px;
    height: 36px;
    margin-right: .5rem;
    border-radius: 50%;
    vertical-align: middle;
}

table, th, td {
    text-align: center;
    border-spacing: 5px;
}

thead th {
    position: sticky;
    top: 0;
    left: 0;
    padding: 1rem;
    background-color: #002d72;
    color: #fff;
    text-transform: capitalize;
}

tbody tr:nth-child(even) {
    background-color: #ffff;
}

tbody tr {
    --delay: .1s;
    transition: .5s ease-in-out var(--delay), background-color 0s;
}

tbody tr.hide {
    opacity: 0;
    transform: translateX(100%);
}

tbody tr:hover {
    background-color: #fff6 !important;
}

tbody tr td,
tbody tr td p,
tbody tr td img {
    transition: .2s ease-in-out;
    border: 5px thin #002d72;
}

tbody tr.hide td,
tbody tr.hide td p {
    padding: 0;
    font: 0 / 0 sans-serif;
    transition: .2s ease-in-out .5s;
}

tbody tr.hide td img {
    width: 0;
    height: 0;
    transition: .2s ease-in-out .5s;
}

/* Animation Keyframes */
@keyframes zoomIn {
    0% {
        transform: scale(0.8); /* Reduce el tamaño inicial */
        opacity: 0;
    }
    100% {
        transform: scale(1); /* Tamaño final */
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation Application */
/* Apply zoomIn animation to all interactive TD elements with an ID */
/* Apply animation and styles to all TD elements with an ID */
#mti0,
#asu1, #asu2, #asu3, #asu4, #asu5, #asu6, #asu7, #asu8,
#gsc0,
#cp0, #cp1, #cp2, #cp3, #cp4,
#asu12, #asu11, #asu10, #asu9,
#asu13, #asu14, #asu15, #asu16, #asu17, #asu18,
#asu19, #asu20, #asu21, #asu22, #asu23,
#asu24, #asu25, #asu26, #asu27, #asu28,
#mir0, #mir1,
#db0, #db1,
#ra0, #smin0, #esd0, #nr0,
#pwsk0, #pwsk3, #pwsk2, #pwsk4, #pwsk1,
#sdc0, #sdc1, #sdc2, #sdc3 {
    animation: zoomIn 0.5s ease-in-out;
    margin: 5px; /* Margen alrededor de cada botón */
    transition: transform 0.3s ease; 
}

/* Apply blue background hover to all TD elements with an ID */
#mti0:hover,
#asu1:hover, #asu2:hover, #asu3:hover, #asu4:hover, #asu5:hover, #asu6:hover, #asu7:hover, #asu8:hover,
#gsc0:hover,
#cp0:hover, #cp1:hover, #cp2:hover, #cp3:hover, #cp4:hover,
#asu12:hover, #asu11:hover, #asu10:hover, #asu9:hover,
#asu13:hover, #asu14:hover, #asu15:hover, #asu16:hover, #asu17:hover, #asu18:hover,
#asu19:hover, #asu20:hover, #asu21:hover, #asu22:hover, #asu23:hover,
#asu24:hover, #asu25:hover, #asu26:hover, #asu27:hover, #asu28:hover,
#mir0:hover, #mir1:hover,
#db0:hover, #db1:hover,
#ra0:hover, #smin0:hover, #esd0:hover, #nr0:hover,
#pwsk0:hover, #pwsk3:hover, #pwsk2:hover, #pwsk4:hover, #pwsk1:hover,
#sdc0:hover, #sdc1:hover, #sdc2:hover, #sdc3:hover {
    background-color: #002d72;
    color: #fff;
    cursor: pointer;
}

.btn-asu, /*.btn-pba,*/ .btn-eng, /*.btn-sco,*/ .btn-gsc, /*.btn-mti,*/ .btn-mba/*, .btn-pai*/ {
    animation: pulse 1s ease-in-out;
    animation-iteration-count: 5;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Button Styles */
button {
    background-color: #edaf00;
    border: 1px solid #000;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* Highlight Styles */
.highlight-pba {
    background-color: #eaaa00;
    color: #FFF;
}

.highlight-mteng, .highlight-mtinn, .highlight-sdc, .highlight-gsc, .highlight-mba, .highlight-pai,.highlight-tce {
    color: #FFF;
    background-color: #002d72;
}

.highlight-asu {
    color: #FFF;
    background-color: #8c1d40;
}

@media (max-width: 768px) and (orientation: portrait) {
    .content-hidden {
        display: none;
    }

    .orientation-message {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 1000;
        font-size: 1.2rem;
        padding: 1rem;
    }
}

td#empty-cell {
    border: none; /* O el estilo que prefieras para "quitar" el borde */
}

.table__body table td#empty-cell {
    border: none;
}

#uide-container {
    display: flex; /* Activa Flexbox */
    justify-content: space-between; /* Separa los elementos a los extremos */
    align-items: flex-start; /* Alinea los items al inicio del eje transversal (útil si tienen alturas diferentes) */
    gap: 20px; /* Espacio opcional entre las dos columnas */
    margin-top: 20px; /* Un poco de espacio arriba */
    padding: 15px;
    border-top: 1px solid #eee; /* Un separador visual opcional */
}

#uide-left,
#uide-right {
    flex-basis: 48%; /* Cada columna tomará aproximadamente la mitad del espacio, dejando espacio para el 'gap' */
    /* Si prefieres que una sea más ancha que la otra, puedes ajustar los porcentajes */
    /* Por ejemplo, flex-basis: 60%; para una y flex-basis: 38%; para la otra */
    box-sizing: border-box; /* Para que el padding y border no aumenten el tamaño total */
}

#uide-left p,
#uide-right p {
    margin-top: 0; /* Quitar el margen superior por defecto del párrafo si no se desea */
    font-size: 0.9em;
    color: #333;
    line-height: 1.6;
}

#uide-asu-logo {
    max-width: 150px; /* Ajusta el tamaño del logo según necesites */
    height: auto;
    margin-top: 10px;
}

#uide-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #002d72; /* Usando el color que vi en tu HTML */
    margin-bottom: 10px;
}

#uide-icon {
    margin-right: 5px;
}

#uide-italic {
    font-style: italic;
    color: #555;
}

/* Media query para pantallas más pequeñas (móviles) */
@media (max-width: 768px) {
    #uide-container {
        flex-direction: column; /* Apila las columnas verticalmente */
        align-items: center; /* Centra los items cuando están en columna */
    }

    #uide-left,
    #uide-right {
        flex-basis: 100%; /* Cada columna toma todo el ancho */
        text-align: center; /* Centra el texto en móviles */
    }

    #uide-asu-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.table__body table th {
    padding: 10px; /* O el valor que prefieras */
}
</pre></body></html>