.mi-widget-elementor {
    padding: 1rem; /* separación interna */
}

/* Solo separación mínima entre títulos y formularios */
.mi-widget-elementor h2 {
    margin-bottom: 1rem;
}

/* Opcional: pequeños ajustes visuales para botones 
.mi-widget-elementor button {
    cursor: pointer;
}*/

/* Overlay centrado dentro del widget, pero con posición absoluta respecto al body */
#spinnerPDF {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.75);
    display: none; /* mantener oculto al inicio */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Spinner circular */
#spinnerPDF .spinner-circle {
    width: 64px;
    height: 64px;
    border: 6px solid rgba(0,0,0,0.15);
    border-top-color: var(--wp--preset--color--primary, #000);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/*info*/
.info-icon {
    cursor: pointer;
    margin-left: 6px;
    font-weight: bold;
}

.info-text {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    width: max-content;
    max-width: 90vw;
}

#content > div > div > div > div > div > div > ul > li:nth-child(2) > strong{
    color:red;
}

