a.price-inDesk {
    background: var(--color-1);
    color: #000;
    padding: 7px 10px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
}
#contactPopup {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 150px;
}
.modal-dialog {
    max-width: 600px;
    margin: auto;
}
/* Modal */
.modal-dialog {
    max-width: 600px; /* Chiều rộng tối đa của popup */
}
#contactPopup:before {
    content: "";
    background-color: #000000a1;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
}

.modal-content {
    padding: 20px;
	background-color: #fff;
	z-index: 999;
}

.modal-header {
    text-transform: uppercase;
    margin-bottom: 13px;
    font-size: 24px;
}

.modal-header .close {
    font-size: 1.5rem;
}

.modal-body {
    background-color: #fff;
}


/* Tùy chỉnh form */
.form-row {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
}

/* Các nút */
.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Popup mặc định ẩn */
#contactPopup {
    display: none;
}

/* Khi thêm class active, popup sẽ hiển thị */
#contactPopup.active {
    display: block;
}
