.form-help-red {
    color: red;
    padding-left: 0.75rem;
    margin-top: -1em !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.form-help-purple {
    color: red;
    padding-left: 0.75rem;
    margin-top: -1em !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

p.form-help-red--number {
  margin-top: 0 !important;
}

#edit-quote-form-title h2 {
    font-weight: bolder !important;
    font-size: 1.625rem;
    line-height: 1.75rem;
}

.vpn-wrapper { margin-bottom: 20px; font-family: inherit; }
.vpn-label { font-weight: bold; color: #333; font-size: 1rem; margin-bottom: 0.5rem; display: block; }
.vpn-boxes { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; row-gap: 10px;}
.vpn-boxes p {margin: 0px !important;}
.vpn-box {
    padding: .375rem .25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #ffffff; 
    border: 1px solid #ced4da; 
    border-radius: 4px; 
    text-align: center;
    transition: border-color 0.15s ease-in-out;
}
.vpn-box:focus { outline: none; border-color: #80bdff; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

/* Separator style for the dash */
.vpn-dash {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 4px;
    color: #333;
    user-select: none;
}

/* =========================================
   NUEVO: LÓGICA DE DETENCIÓN (HALT FORM) 
   ========================================= */
.not-approved-warning {
    display: none;
    background-color: #ffe6e6;
    color: #d8000c;
    border: 1px solid #d8000c;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    margin: 30px 0;
}

/* 1. Muestra el cartel */
.halt-configuration .not-approved-warning {
    display: block;
}

/* 2. Oculta el título "Request a Quote" y TODO lo que le sigue (campos y botón submit) */
.halt-configuration .js-form-item-quote-form-title,
.halt-configuration .js-form-item-quote-form-title ~ *,
.halt-configuration #edit-quote-form-title,
.halt-configuration #edit-quote-form-title ~ *,
.halt-configuration .form-actions {
    display: none !important;
}