/* Request Price Button Styling */
.request-price-button {
    background-color: #007cba;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.request-price-button:hover {
    background-color: #005fa3;
}


/* Hide modal by default */
.request-price-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.request-price-modal-content {
    background: #fff;
    max-width: 400px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: left;
}

.request-price-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.request-price-modal input,
.request-price-modal button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.request-price-modal h5{
    margin: 20px 0px;
}
.request-price-status {
    text-align: center;
}
.request-price-status button.request-price-ok {
    background: #007cba;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.request-price-label {
    font-weight: bold;
    color: #c00;
    display: inline-block;
}

.request-price-button {
    background: #222;
    color: #fff;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 4px;
}