/**
 * LCB PDF Offer Form Styles
 * Minimal overrides - uses theme's CF7 styles as base
 */

/* Only apply specific adjustments where needed */
#lcb-offer-form .wpcf7-form {
    /* Form inherits CF7 styles from theme */
}

/* Success message styling to match CF7 */
#lcb-offer-form .wpcf7-mail-sent-ok {
    border-color: #46b450; /* Green */
}

/* Captcha container specific styling if needed */
.lcb-captcha-container {
    margin: 1em 0;
}

.lcb-form-error-output {
    background: #f5b49c;
    padding: 10px;
    margin: 10px 0;
}

/* Honeypot field - ensure it's hidden */
#lcb-offer-form p[style*="display:none"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}


/** bootstrap for contactform7 **/
#lcb-offer-form p {
    margin-bottom: 10px;
}

#lcb-offer-form .row {
    width: 100%;
    display: block;
    margin: 0;
}

#lcb-offer-form .row input,
#lcb-offer-form .row textarea,
#lcb-offer-form .row select {
    width: 100%;
    border-color: #8d8d8d;
    border-width: 2px;
}

#lcb-offer-form .row select {
    padding: 12px 12px;
}

#lcb-offer-form .form-group {
    margin-bottom: 5px;
}

#lcb-offer-form .col-md-6:first-child,
#lcb-offer-form .col-md-4:first-child {
    padding-left: 0;
}

#lcb-offer-form .col-md-6:last-child,
#lcb-offer-form .col-md-4:last-child {
    padding-right: 0;
}

#lcb-offer-form .col-md-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0;
    padding-left: 0;

}

@media (min-width: 992px) {
    #lcb-offer-form .row {
        display: flex;
    }

    #lcb-offer-form .col-md-6 {
        float: left;
        width: 50%;
        padding-right: 5px;
        padding-left: 5px;
    }

    #lcb-offer-form .col-md-4 {
        float: left;
        width: 33.33%;
        padding-right: 5px;
        padding-left: 5px;
    }

    #lcb-offer-form .row input[type=submit] {
        width: auto;
    }
}