body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.filter-container {
    padding: 20px;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.filter-group {
    margin-bottom: 5px;
    border-radius: 50px;
        min-width: 150px;
}

.filter-title {
    background-color: transparent;
    border: 1px solid #edeaea;
    padding: 10px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    position: relative;
    outline: none;
    font-size: 17px;
    border-bottom: 1px solid ;
        color: #717171;
}

.filter-dropdown {
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.filter-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.filter-dropdown a:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .filter-container {
        width: 100%;
            justify-content: space-around;
    }
}
