/* CSS hiện đại cho modal ước tính giá xe */
div#popmake-427 {
    padding: 0;
    background: none;
}
.dangkiem {
/* 	display: none; */
}
#modalUocTinhGia .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); overflow: hidden;
}

#modalUocTinhGia .modal-header {
    background: linear-gradient(45deg, #3a6073, #16222a);
    color: #fff;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    padding: 5px 25px;
}

#modalUocTinhGia .modal-title {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.5px; color: #fff; margin-bottom: 0;
}

#modalUocTinhGia .modal-body {
    padding: 25px;
    background-color: #f8f9fa;
}

#modalUocTinhGia .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    transition: opacity 0.2s;
}

#modalUocTinhGia .close:hover {
    opacity: 1;
}

/* Styling cho form chọn tỉnh thành */
#cboTinhThanhUocTinhGia {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 15px;
    padding: 0 15px;
    margin-bottom: 20px;
    transition: border-color 0.2s, box-shadow 0.2s; background-color: #fff;
}

#cboTinhThanhUocTinhGia:focus {
    border-color: #3a6073;
    box-shadow: 0 0 0 0.2rem rgba(58, 96, 115, 0.15);
}

/* Styling cho bảng giá */
.price-info {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.price-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    transition: background-color 0.2s;
		gap: 23px;
    justify-content: center;
    display: flex;
}

.price-item:hover {
    background-color: #f9f9f9;
}

.price-item .col-7 {
    color: #555;
    font-weight: 500; flex: 0 1 70%;
}

.price-item .col-5 {
    font-weight: 600;
    color: #333;  flex: 0 1 30%;

}

.price-total {
    padding: 20px;
    background-color: #16222a;
    color: #fff;
    font-size: 18px;
    font-weight: 600; gap: 23px;
    justify-content: center;
    display: flex;

}

.price-total .col-5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
		flex: 0 1 33%;

}
.price-total .col-7 {
	flex: 0 1 67%;
}
/* Styling cho ghi chú */
.note {
    background-color: #fff;
    border-left: 4px solid #3a6073;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Nút ước tính giá */
.btn-estimate-price {
    background: linear-gradient(45deg, #3a6073, #16222a);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-estimate-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #16222a, #3a6073);
    color: #fff;
}

.btn-estimate-price:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animation cho hiển thị giá */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#lblGiaXe, #lblPhiTruocBa, #lblPhiDuongBo, 
#lblBaoHiemDanSu, #lblPhiBienSo, #lblPhiKiemXe, #lblTongCong {
    display: inline-block;
    animation: fadeInUp 0.4s ease-out;
}

/* Màu khác nhau cho các dòng chi phí */
.price-item:nth-child(1) .col-5 {
    color: #e74c3c;
}

.price-item:nth-child(2) .col-5 {
    color: #2980b9;
}

.price-item:nth-child(3) .col-5 {
    color: #27ae60;
}

.price-item:nth-child(4) .col-5 {
    color: #8e44ad;
}

.price-item:nth-child(5) .col-5 {
    color: #d35400;
}

.price-item:nth-child(6) .col-5 {
    color: #16a085;
}
.note.mt-3 p {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #modalUocTinhGia .modal-title {
        font-size: 20px;
    }
    
    .price-item {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .price-total {
        padding: 15px;
        font-size: 16px;
    }
    
    .price-total .col-5 {
        font-size: 18px;
    }
    
    .note {
        font-size: 13px;
    }
}