/* General padding for the .demo class */
.demo {
    padding: 100px 0;
}

/* Heading title styling */
.heading-title {
    margin-bottom: 100px;
}

/* Pricing table styles */
.pricingTable {
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease 0s;
}

/* Hover effect for pricing table */
.pricingTable:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 20px #000;
}

/* Hover effect for list items within the pricing table */
.pricingTable:hover .pricing-content li {
    font-weight: 700;
}

/* Header styles for the pricing table */
.pricingTable .pricingTable-header {
    background: #3d3d3d;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease 0s;
    margin: 0;
}

/* Header hover effect */
.pricingTable:hover .pricingTable-header {
    background: #1E90FF;
}

/* Decorative elements in the pricing header */
.pricingTable .pricingTable-header:before,
.pricingTable .pricingTable-header:after {
    content: "";
    width: 25px;
    height: 20px;
    background: #313131;
    position: absolute;
    bottom: 0;
}

/* Positioning the left and right decorative elements */
.pricingTable .pricingTable-header:before {
    left: 0;
}

.pricingTable .pricingTable-header:after {
    right: 0;
}

/* Title styling in the pricing table */
.pricingTable .title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: -5px 0 2px 0;
}

/* Currency and price styles */
.pricingTable .currency,
.pricingTable .price-value {
    font-size: 25px;
    font-weight: 900;
    color: #fff;
}

.pricingTable .currency {
    margin-right: 3px;
}

/* Month/year labels styles */
.pricingTable .month,
.pricingTable .year {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* Content section inside the pricing table */
.pricingTable .pricing-content {
    background: #313131;
    padding: 25px 20px;
}

/* List styling inside the pricing content */
.pricingTable .pricing-content ul {
    list-style: none;
    padding: 0;
    margin-top: -14px;
}

/* List items styling */
.pricingTable .pricing-content ul li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

.pricingTable .pricing-content ul li span {
    font-weight: 700;
    padding-right: 5px;
}

/* Signup button style in the pricing table */
.pricingTable .pricingTable-signup {
    display: block;
    padding: 10px 0;
    background: #3d3d3d;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

/* Hover effect for the signup button */
.pricingTable .pricingTable-signup:hover {
    box-shadow: 0 0 10px #1E90FF;
}

/* Pricing table hover effect for signup button */
.pricingTable:hover .pricingTable-signup {
    background: #1E90FF;
}

/* Filter button styles */
.filterPrice {
    background-color: transparent;
}

.btn:not([disabled]):not(.disabled).active {
    color: White;
    border-radius: 23px;
    background-color: #1E90FF;
    animation-duration: 4s;
}

/* Button general style */
.btn:not([disabled]):not(.disabled) {
    cursor: pointer;
    color: black;
    background-color: white;
    border: #1E90FF 2px solid;
    font-weight: bold;
}

/* Responsive design for larger screens */
@media only screen and (max-width: 990px) {
    .pricingTable {
        margin-bottom: 40px;
    }
}

/* Filter button styles (general) */
.filter-list {
    text-align: center;
    margin-bottom: 20px;
}

.filter-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Active filter button style */
.filter-button.active {
    background-color: #007bff;
    color: #fff;
}

/* Filter button hover effect */
.filter-button:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive design for filter buttons */
@media (max-width: 768px) {
    .filter-list {
        text-align: center;
        margin-bottom: 20px;
    }

    .filter-button {
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        margin: 5px 0;
        padding: 12px;
        font-size: 14px;
    }
}

/* Further responsiveness for smaller screens */
@media (max-width: 480px) {
    .filter-button {
        font-size: 12px;
        padding: 10px;
    }
}