/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 25 2025 | 22:38:07 */
/* CONTENEDOR PRINCIPAL CON ALTURA FIJA Y SCROLL */
.simres .card:last-child {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px; /* ← ALTURA MÍNIMA PARA ALINEAR */
}

.simres .table-wrap {
    overflow-x: auto;
    overflow-y: auto; /* ← SCROLL VERTICAL */
    margin-top: 18px;
    flex-grow: 1;
    max-height: 400px; /* ← ALTURA MÁXIMA CON SCROLL */
}

.simres table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1100px;
}

/* GARANTIZAR QUE OCUPE EL MISMO ESPACIO QUE PARÁMETROS */
.simres {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .simres .card:last-child {
        min-height: 200px; /* ← MENOS ALTURA EN MÓVIL */
    }
    
    .simres .table-wrap {
        max-height: 300px; /* ← MENOS SCROLL EN MÓVIL */
    }
}