/*

██████╗ ██╗      █████╗  ██████╗██╗  ██╗ ██████╗██╗  ██╗ ██████╗ ██████╗ ██╗███╗   ███╗ █████╗          ██████╗ ██████╗ ███╗   ███╗
██╔══██╗██║     ██╔══██╗██╔════╝██║ ██╔╝██╔════╝██║  ██║██╔═══██╗██╔══██╗██║████╗ ████║██╔══██╗        ██╔════╝██╔═══██╗████╗ ████║
██████╔╝██║     ███████║██║     █████╔╝ ██║     ███████║██║   ██║██████╔╝██║██╔████╔██║███████║        ██║     ██║   ██║██╔████╔██║
██╔══██╗██║     ██╔══██║██║     ██╔═██╗ ██║     ██╔══██║██║   ██║██╔══██╗██║██║╚██╔╝██║██╔══██║        ██║     ██║   ██║██║╚██╔╝██║
██████╔╝███████╗██║  ██║╚██████╗██║  ██╗╚██████╗██║  ██║╚██████╔╝██║  ██║██║██║ ╚═╝ ██║██║  ██║ █████╗ ╚██████╗╚██████╔╝██║ ╚═╝ ██║
╚═════╝ ╚══════╝╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝ ╚═════╝ ╚═╝  ╚═╝╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚════╝  ╚═════╝ ╚═════╝ ╚═╝     ╚═╝
*/
.unidad-demo {
    border: 2px solid #333;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

.caja-ejemplo {
    background-color: #3498db;
    color: white;
    padding: 5px;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
}

.padre-rem {
    font-size: 20px;
    border: 1px dashed #666;
    padding: 10px;
    margin-top: 10px;
}

.hijo-em {
    font-size: 1.5em;
    border: 1px solid #e74c3c;
    padding: 5px;
    margin-top: 5px;
}

.tabla-unidades {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tabla-unidades th,
.tabla-unidades td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tabla-unidades th {
    background-color: #f2f2f2;
}

/* Clases extraídas de estilos en línea */
.w-200px {
    width: 200px;
}

.w-50vw {
    width: 50vw;
}

.demo-parent-percent {
    width: 300px;
    border: 2px dashed red;
}

.w-50-percent {
    width: 50%;
}