.service-detail-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    padding: 25px; /* Tăng khoảng cách nội dung */
    max-width: 1200px; /* Tăng độ rộng card */
    min-height: 220px; /* Tăng chiều cao */
    margin: 30px auto;
}

.service-image {
    width: 320px; /* Tăng kích thước ảnh */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 30px;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 22px; /* Tăng kích thước chữ tiêu đề */
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.service-description {
    font-size: 16px; /* Làm chữ dễ đọc hơn */
    color: #333;
    line-height: 1.6;
}


.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover; /* Giữ đúng tỷ lệ ảnh */
    margin-right: 8px;
}


#app {
    padding-top: 20px;  /* Tăng khoảng cách phía trên */
    padding-bottom: 100px; /* Tăng khoảng cách phía dưới */
}

button:hover {
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background-color: white;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    font-weight: normal; /* Loại bỏ chữ in đậm */
    color: #0a3d62; /* Màu xanh đậm */
    background-color: #f4f4f4; /* Giữ nền sáng để dễ đọc */
    padding: 10px; /* Tạo khoảng cách đẹp */
    text-align: center; /* Canh giữa nội dung */
}


tr:hover {
    background-color: #f1f1f1;
}

/* Định dạng container chính */
.w-full {
    max-width: 100%;
}

/* Tiêu đề chính */
.text-2xl {
    font-size: 1.75rem;
    font-weight: bold;
    color: #0d47a1;
}

/* Định dạng từng mục */
.block {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px;
    transition: all 0.2s ease-in-out;
}

/* Khoảng cách giữa các mục */
.flex.flex-col.gap-6 > .block {
    border-bottom: 1px solid #e0e0e0;
}

/* Nút bấm mở dropdown */
button.flex {
    transition: background 0.2s ease-in-out;
}

/* Hiệu ứng hover nhẹ */
button.flex:hover {
    background: #f8f9fa;
}

/* Định dạng dropdown */
.hidden {
    display: none;
    transition: all 0.3s ease-in-out;
}

/* Khi mở dropdown */
.hidden.show {
    display: block;
}

/* Hiển thị danh sách gói cước */
.flex.flex-wrap.gap-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Card từng gói cước */
.flex.flex-wrap.gap-4 > a {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 220px;
    transition: all 0.2s ease-in-out;
}

/* Hover nhẹ */
.flex.flex-wrap.gap-4 > a:hover {
    background: #f8f9fa;
    transform: scale(1.02);
}

/* Icon trong gói cước */
.flex.flex-wrap.gap-4 > a img {
    width: 32px;
    height: 32px;
}
/* Áp dụng hiệu ứng hover nhẹ cho tất cả phần tử */
* {
    transition: all 0.2s ease-in-out!important;
}

/* Hiệu ứng hover mặc định cho tất cả phần tử */
*:hover {
    background-color: rgba(0, 0, 0, 0.02)!important; /* Nhẹ nhàng */
    transform: scale(1.01)!important;
}

#imageModal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    z-index: 9999; /* Ưu tiên cao nhất */

}

#imageModal.show {
    opacity: 1;
    visibility: visible;
}

/* Kích thước ảnh */
#modalImg {
    max-width: 90vw; /* Giữ kích thước tối đa theo viewport */
    max-height: 90vh; /* Không cho ảnh vượt quá chiều cao màn hình */
    width: auto; /* Đảm bảo không méo ảnh */
    height: auto; /* Tự động điều chỉnh để giữ nguyên tỉ lệ */
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    object-fit: contain; /* Giữ nguyên tỉ lệ mà không cắt ảnh */
}

/* Hiệu ứng zoom */
#imageModal.show #modalImg {
    transform: scale(1);
}


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

/* Nội dung modal */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* Nút đóng modal */
.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Header */
.modal-header {
    background-color: #dbeafe;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

/* Bảng trong modal */
.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.modal-table th,
.modal-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.modal-table th {
    background-color: #dbeafe;
}
