/* Popup Modal Background */
.wc-enquiry-modal {
    display: none;
    position: fixed;
    z-index: 999999; /* Higher z-index to stay above themes */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content Container */
.wc-enquiry-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 650px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

/* Close Button in Modal */
.wc-enquiry-close {
    color: #333;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    line-height: 1;
}

.wc-enquiry-close:hover {
    color: #d9534f;
}

/* Form Styles and Form Field Columns */
.form-style-2 {
    margin-top: 20px;
}

.columns_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 15px;
}

.column-1_2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.column-1_1 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Mobile responsive fixes */
@media screen and (max-width: 550px) {
    .column-1_2 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}

.style-line input, 
.style-line select, 
.style-line textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fafafa;
}

.style-line textarea {
    height: 120px;
    resize: vertical;
}

.margin-bottom {
    margin-bottom: 15px;
}

/* Notification Message Styling */
#wc-enquiry-response {
    font-weight: 600;
    font-size: 14px;
    padding: 5px 0;
}