.pricing-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.category-btn-alt {
    padding: 12px 24px;
    margin: 8px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    color: white;
    font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 140px;
    text-align: center;
}

.category-btn-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-btn-alt:hover::before {
    opacity: 1;
}

.btn-alt-free {
    background-color: rgba(0, 230, 118, 0.8);;
    box-shadow: 0 4px 8px rgba(0, 230, 118, 0.4);
}
.btn-alt-free:hover {
    background-color: #69f0ae;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 230, 118, 0.6);
}

.btn-alt-freemium {
    background-color: #2979ff;
    box-shadow: 0 4px 8px rgba(41, 121, 255, 0.4);
}
.btn-alt-freemium:hover {
    background-color: #448aff;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(41, 121, 255, 0.6);
}

.btn-alt-paid {
    background-color: #ff1744;
    box-shadow: 0 4px 8px rgba(255, 23, 68, 0.4);
}
.btn-alt-paid:hover {
    background-color: #ff5252;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 23, 68, 0.6);
}

.btn-alt-trial {
    background-color: #7c4dff;
    box-shadow: 0 4px 8px rgba(124, 77, 255, 0.4);
}

.btn-alt-trial:hover {
    background-color: #7e57c2;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(124, 77, 255, 0.6);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 37px;
    row-gap: 25px;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

.select-wrapper {
    position: relative;
    width: 18%;
    min-width: 300px;
    height: 45px;
    user-select: none;
}

.select-selected {
    padding: 10px;
    color: white;
    background-color: #1a183a;
    border: 2px solid #4a4a7a;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    font-size: 1.125rem;
    position: relative;
    box-sizing: border-box;
}

.select-selected:hover {
    box-shadow: 0 0 10px 3px var(--fiolet);
}

.select-selected.picked {
    border-color: #7ee787!important;
}

.select-selected.picked:hover {
    box-shadow: 0 0 10px 3px #7ee787;
}

.select-options {
    position: absolute;
    z-index: 1;
    top: 118%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #252345;
    color: white;
    border: 2px solid #4a4a7a;
    border-top: none;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    list-style-type: none;
    padding: 10px;
    margin: 0;
    display: none;
    width: 100%;
    font-size: 1.125rem;
    max-height: 280px;
    overflow-y: auto;
}

.select-options.open {
    display: block;
}

.select-options li {
    /*padding: 8px;*/
    cursor: pointer;
    position: relative;
}

.select-options li.chosen {
    background-color: rgba(188, 140, 255, 0.7);
}

.select-options li.chosen::after {
    content: "\00D7";
    position: absolute;
    right: 16px;
    top: -1px;
    color: whitesmoke;
    font-size: 28px;
}

.select-options li:hover {
    background-color: rgba(124, 77, 255, 0.4);;
}

.select-options li a {
    text-decoration: none;
    color: #e0e0ff;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
}

.select-selected .selected-text {
    display: inline-block;
}

.select-selected .arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: white transparent transparent transparent;
    border-top: 6px solid #a0a0d0;
    pointer-events: none;
}

.open .arrow {
    transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 600px){
    .filters {
        column-gap: 14px;
    }
    .select-options {
        width: 100%;
    }
    .select-selected {
        padding: 8px;
    }
}

@media screen and (max-width: 500px) {
    .category-btn-alt {
        /*min-width: 130px;*/
    }
}

@media screen and (max-width: 420px){
    .filters {
        row-gap: 25px;
    }
    .select-wrapper {
        width: 100%;
        min-width: 155px;
    }
    .select-options {
        width: 100%;
    }
}

@media screen and (max-width: 370px) {
    .category-btn-alt {
        width: 100%;
    }
}