.elementor-32912 .elementor-element.elementor-element-4f94bba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-c020fc1 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- General Styling --- */
.camdohanoi-pricing-table {
    font-family: 'Inter', inter;
    max-width: 100%;
    /* THÊM MỚI: Đảm bảo container này cũng có thể kéo rộng */
    width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.camdohanoi-pricing-table table {
    /* THAY ĐỔI: Ép bảng kéo rộng 100% chiều ngang của phần tử cha */
    width: 100%;
    min-width: 900px; /* Vẫn giữ min-width để đảm bảo cuộn ngang trên màn hình nhỏ */
    border-collapse: collapse;
    border: 1px solid #d4e6f1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.camdohanoi-pricing-table th {
    background-color: #f8f9fa;
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    color: #212529;
    border-bottom: 1px solid #d4e6f1;
    border-right: 1px solid #d4e6f1;
    white-space: nowrap;
}

.camdohanoi-pricing-table th:first-child {
    background-color: #00A650; /* Primary color */
    color: #ffffff;
    font-size: 18px;
}

.camdohanoi-pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #d4e6f1;
    border-right: 1px solid #d4e6f1;
    color: #212529;
    font-size: 15px;
}

.camdohanoi-pricing-table th:last-child,
.camdohanoi-pricing-table td:last-child {
    border-right: none;
}

.camdohanoi-pricing-table tbody td:first-child {
    background-color: #f8f9fa;
    text-align: left;
    font-weight: 600;
}

.camdohanoi-pricing-table tr:last-child td {
    border-bottom: none;
}

/* Specific styling for prices */
.price-row td { color: #00A650; } /* Primary color for price text */
.price-row strong { font-size: 1.1em; font-weight: bold; }
.price-row small { display: block; font-size: 12px; color: #777; font-weight: normal; }

/* Checkmark styling */
.check {
    color: #00A650; /* Primary color for checkmarks */
    font-size: 16px; /* Điều chỉnh font size cho "Có✓" để không quá to */
    font-weight: bold;
    vertical-align: middle;
    /* margin-right: 4px; -- bỏ margin nếu không cần khoảng cách sau chữ Có */
}

/* Badge styling */
.camdohanoi-pricing-table th.daily-col,
.camdohanoi-pricing-table th.weekly-col,
.camdohanoi-pricing-table th.recommended {
    position: relative;
    padding-top: 40px; /* Make space for the badge */
    padding-bottom: 15px;
}

.badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    width: max-content;
    color: white;
}
.badge-daily,
.badge-weekly,
.badge-recommended {
    background-color: #00A650; /* All badges use the primary color */
}

/* Recommended column styling - keep it distinct for "Nổi bật" */
.camdohanoi-pricing-table th.recommended {
    background-color: #e6f7ed; /* Lighter shade of primary color */
    border-top: 4px solid #00A650; /* Primary color border */
}
.camdohanoi-pricing-table td[data-label*="Theo thỏa thuận"] {
    background-color: #e6f7ed; /* Lighter shade for recommended column cells */
}

/* Call to action button styling */
.cta-button {
    display: inline-block;
    background-color: #00A650; /* Primary color */
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cta-recommended {
    background-color: #008D43; /* Slightly darker primary color for recommended CTA */
}
.cta-recommended:hover {
    background-color: #007A38; /* Even darker on hover */
}

/* --- RESPONSIVE LOGIC: SCROLL ON SMALL SCREENS --- */
@media screen and (max-width: 991px) {
    .camdohanoi-pricing-table th:first-child,
    .camdohanoi-pricing-table td:first-child {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 2;
    }
    .camdohanoi-pricing-table thead th {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 3;
        background-color: #f8f9fa;
    }
    .camdohanoi-pricing-table th:first-child {
        z-index: 4;
        background-color: #00A650; /* Primary color */
    }
}/* End custom CSS */