#partInquiryModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
}

.inquiry-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 2px solid #0044cc;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
}

.inquiry-modal-close {
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.inquiry-modal-close:hover {
    color: red;
}

.inquiry-modal-content input,
.inquiry-modal-content textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
}

.inquiry-modal-content button {
    background-color: #0044cc;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.inquiry-modal-content button:hover {
    background-color: #003399;
}
