        :root{
            --w-mm: 60mm;
            --h-mm: 30mm;
            --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        body {
            margin: 0;
            padding: 20px;
            background: #ff8c00;
            font-family: var(--font-sans);
            color: #111;
            display: grid;
        }
        .controls {
            background: white;
            padding: 14px;
            border-radius: 10px;
            max-width: 380px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            margin-bottom: 20px;
        }
        .controls .row { display:flex; gap:8px; }
        .controls .small { flex:1; }
        .controls input {
            width: 100%;
            padding: 8px;
            margin: 8px 0;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 15px;
            box-sizing: border-box;
        }
        button {
            padding: 10px 14px;
            border: none;
            border-radius: 6px;
            background: #2b6cff;
            color: white;
            font-size: 15px;
            cursor: pointer;
            margin-top: 6px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        button:hover {
            transform: scale(1.07);
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }
        .label-wrap {
            width: 58mm;
            height: 28mm;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.10);
            margin-bottom: 5px;
            margin-right: 8px;
            display: inline-block; /* para generar varias etiquetas en línea */
        }
        /* Nueva estructura dividida */
        .label {
            width: 100%;
            height: 100%;
            border: var(--border);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
            padding: 1px;
            text-align: center;
        }
        .contenido {
            text-align: center;
            width: 100%;
            font-size: 32px;
            font-family: "Arial", Times, serif;
            font-weight: 600;
            line-height: 22px;
        }
        .NOM-017 {
            text-align: center;
            width: 100%;
            height: 100%;
            font-size: 18px;
            word-break: normal;
            font-family: "Times New Roman", Times, serif;
            line-height: 15px;
            font-weight: 500;
        }
        .imgEtiqueta {
            width: 75px;
            height: auto;
            display: block;
            margin: 0 auto 0 auto; /* centrada */
        }
        //.contenedorEtiquetas{
        //    display: grid;
        }
        .footer {
            display:flex;
            justify-content:space-between;
            gap:8px;
            align-items:center;
        }
        .autor-footer {
            text-align: center;
            width: 100%;
            padding: 6px 0;
            font-size: 11px;
            /* Transparencia tipo marca de agua */
            opacity: 0.2;
            color: #000; /* negro suave */
            background: transparent; /* sin fondo */
            margin-top: 20px;
            user-select: none;
        }
        .autor-footer:hover {
            opacity: 0.5; /* se ve un poquito más al pasar el mouse */
        }
        table, th, td {
            vertical-align: top;   /* arriba */
            text-align: left;      /* izquierda */
        }
        @media print {
            body { background: white; padding: 0; }
            .controls { display: none !important; }
            .label-wrap { box-shadow: none; border-radius: 0; margin-right: 0; }
            .autor-footer { display: none !important; }
        } 