.pricing-table-wrapper {
    max-width: 720px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    font-family: Inter, sans-serif;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.pricing-table th,
.pricing-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.price-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.price-text {
    font-weight: 700;
}

/* .price-label span::after {
    content: " USD";
    font-size: 12px;
    opacity: .7;
} */

.select-btn {
    padding: 8px 14px;
    background: #7193D4;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    opacity: .4;
    pointer-events: none;
    cursor: pointer;
}

.select-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.pricing-table tbody tr:hover {
    background: rgba(113, 147, 212, .12);
}