/* Modal Styles */
#wsi_inquiry_form_modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent background */
}

.wsi_modal_content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wsi_modal_content form input[type="text"], .wsi_modal_content form input[type="email"], .wsi_modal_content form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.wsi_modal_content form input[type="submit"] {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    border: none;
}

.wsi_modal_content form input[type="submit"]:hover {
    background-color: #005bb5;
}

.wsi_close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}

.wsi_close:hover,
.wsi_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
