#map {
    width: 100%;
    height: 600px;
    position: relative;
}

.map-overlay {
    z-index: 5;
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.category {
    background: #f0f0f0;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.category.active {
    background: black;
    color: white;
}

.category img {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto 5px;
}
