/*==============================================================================================*/
/*ESTILO DE TABLA SIN RESTRICCION DE ALTURA CON BORDE*/
/*==============================================================================================*/
.wibtabla {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ccc;
    font-family: sans-serif;
}

.wibfila {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.wibcabecera {
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: center;
}

.wibcelda {
    flex: 1;
    padding: 10px;
    min-width: 100px;
    box-sizing: border-box;
    border-right: 1px solid #eee;
}

.wibfila:last-child {
    border-bottom: none;
}

.wibcelda:last-child {
    border-right: none;
}

@media (max-width: 600px) {
    .wibfila {
    flex-direction: column;
    }
    .wibcelda {
    border-right: none;
    border-bottom: 1px solid #eee;
    }
}

    /* === Dark Mode === */
    body.dark .wibcabecera {
    background-color: #2a2a2a;
    }