.vc-preview-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


.vc-preview-field {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente el contenido interno */
    justify-content: center; /* Centra verticalmente si el campo crece */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 18px 20px;
    margin-bottom: 18px;
    max-width: 550px;
}
.vc-preview-row {
    display: flex;
    gap: 24px;
    justify-content: center; /* Centra la fila dentro del contenedor */
}
.vc-preview-label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}
.vc-preview-input {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    width: 100%
    margin-bottom: 10px;
}
.vc-preview-label .vc-required {
    color: #d00;
    font-weight: bold;
    margin-left: 3px;
}

/* Mantén los títulos y campos alineados a la izquierda dentro del contenido */
.vc-preview-label,
.vc-preview-input,
.vc-preview-row {
    align-self: stretch; /* Ocupa todo el ancho disponible */
}

/* Popup de confirmación centrado */
#vc-form-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#vc-form-popup .vc-popup-content {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    font-size: 1.3em;
    text-align: center;
}
.vc-preview-submit {
    display: block;
    margin: 32px auto 0 auto;
    padding: 14px 0;
    width: 80%;
    max-width: 320px;
    background: #2271b1; /* Color principal WP */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.vc-preview-submit:hover {
    background: #135e96;
}