.pricing-table-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}
.pricing-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.pricing-table .pricing-header {
    display: flex;
    background-color: #f2e5ef;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.pricing-table .pricing-header div {
    flex: 1;
    padding: 5px;
    text-align: center;
    font-size: 14px;
}
.pricing-table .pricing-row {
    display: flex;
    border-bottom: 1px solid #ccc;
}
.pricing-table .pricing-row div {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-right: 1px solid #ccc;
}
.pricing-table .pricing-row div:last-child {
    border-right: none;
}
.pricing-table .pricing-row input {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}
.pricing-table-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.pricing-table-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.pricing-table-button:hover {
    background-color: #0056b3;
}
#tableFiltering {
	display:flex;
	margin:30px 0;
	gap:20px;
	align-items:center;
	justify-content:start;
}
h3.category-title {
	font-size:20px;
	font-weight:bold;
}
@media (max-width: 992px) {
    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pricing-table {
        width: 100%;
        display: block;
        min-width: max-content;
    }
    .pricing-table .pricing-header div,
    .pricing-table .pricing-row div {
		font-size:13px;
    }
}
@media screen and (min-width:992px) and (max-width: 1200px) {
    .pricing-table .pricing-header div,
    .pricing-table .pricing-row div {
		font-size:14px;
    }
}