.request-quote-btn{
	margin-right: 15px!important;
}

/* Modal background */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.quote-modal.show {
    display: flex!important;
}

/* Modal content */
.quote-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    /*overflow-y: auto;*/
    position: relative;
}

.quote-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.quote-modal-close:hover {
    color: #000;
}

/* Disabled button style */
.request-quote-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
    .quote-modal-content {
        width: 95%;
        padding: 20px;
    }
}