.filterBarLogo img {
    height: 40px;
    width: auto;
}

.filter-menu {
    display: flex;
    overflow-x: auto;
    gap: 5px;

    width: 100%;
    border-bottom: 1px solid lightgrey;
    z-index: 2;
    transition: all 0.3s ease;
}

@media screen and (min-width: 1200px) {
    .filter-menu {
        gap: 40px;
    }
}

.filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 10px;
    border-radius: 30px;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-item.active {
    border-bottom: 2px solid #333;
    border-radius: 0;
}

.filter-item:hover {
    background-color: #f7f7f7;
}

.material-icons {
    margin-bottom: 5px;
}

.filter-text {
    font-size: 0.7em;
    line-height: 1.2;
}

/* Adjustments when the admin bar is visible */
@media screen and (min-width: 782px) {
    body.admin-bar .filter-menu:not(.sticky) {
        top: 30px; /* Adjust this value if the admin bar height changes */
    }
}
/* Filter Pill */
.filter-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #333; /* dark outline */
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px; /* rounded corners */
    font-size: 14px; /* adjust as needed */
}

.filter-pill::after {
    content: "×"; /* adding the x symbol */
    margin-left: 8px; /* space between the x and the label */
}

/* Hidden scrollbar for Webkit browsers */
.filter-menu::-webkit-scrollbar {
    display: none;
}

#cafeGridContainer {
    position: relative;
}
