.elementor-134 .elementor-element.elementor-element-74e8cfe{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a9427c5 *//* Reset mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Tiêu đề bảng */
.table-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase; /* Viết hoa toàn bộ */
    margin-bottom: 30px; /* Khoảng cách giữa tiêu đề và bảng */
    letter-spacing: 2px; /* Khoảng cách giữa các chữ cái */
    background: linear-gradient(90deg, #ff6200, #e55a00); /* Gradient cam */
    -webkit-background-clip: text; /* Áp dụng gradient cho chữ */
    -webkit-text-fill-color: transparent; /* Làm chữ trong suốt để hiện gradient */
}

/* Container bảng */
.pricing-table {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

/* Thiết kế bảng */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Định dạng tiêu đề bảng */
thead th {
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 2px solid #e0e0e0;
    width: 33.33%; /* Chia đều cho 3 cột trên desktop */
}

/* Cột nổi bật (Nâng cao) */
thead th.highlight {
    background-color: #ff6200;
    color: #ffffff;
    border-bottom: none;
}

/* Định dạng các ô trong tbody */
tbody td {
    padding: 15px 20px;
    font-size: 16px;
    color: #333333;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    width: 33.33%; /* Chia đều cho 3 cột trên desktop */
}

/* Cột đầu tiên (tên tính năng) - Canh lề trái */
tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #f9f9f9;
}

/* Hiệu ứng hover cho hàng */
tbody tr:hover {
    background-color: #f5f5f5;
}

/* Định dạng dấu check (✓) và cross (✗) */
.check {
    color: #ff6200;
    font-size: 20px;
}

.cross {
    color: #999999;
    font-size: 20px;
}

/* Ô cuối cùng (giá và button) */
tbody tr:last-child td {
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    border-bottom: none;
    padding: 15px 20px;
}

tbody tr:last-child td:nth-child(2) {
    color: #ff6200;
}

tbody tr:last-child td:nth-child(3) {
    color: #ff6200;
}

/* Định dạng button */
.cta-button {
    display: block;
    background-color: #ff6200;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    max-width: 100%;
}

.cta-button:hover {
    background-color: #e55a00;
}

/* Responsive */
@media (max-width: 768px) {
    thead th, tbody td {
        font-size: 14px;
        padding: 10px;
        width: 33.33%; /* Đảm bảo chia đều 3 cột */
    }

    /* Cột "Cơ bản" và "Nâng cao" đều nhau */
    thead th:nth-child(2),
    thead th:nth-child(3),
    tbody td:nth-child(2),
    tbody td:nth-child(3) {
        width: 35%; /* Chia đều cho 2 cột nội dung */
    }

    /* Cột đầu tiên (tên tính năng) */
    thead th:first-child,
    tbody td:first-child {
        width: 30%; /* Giảm chiều rộng để cân bằng */
    }

    .pricing-table {
        padding: 10px;
    }

    .cta-button {
        font-size: 12px;
        padding: 6px 10px;
        margin-top: 8px;
    }
}/* End custom CSS */