.location-filter {
    padding: 15px 0;
}

.location-filter__icon {
    display: flex;
    gap: 11px;
    margin-bottom: 10px;
}

.location-filter__text { /* small helper for the text block inside the filter */
    margin: 0;
}

.location-filter__current {
    font-weight: 500;
    color: #333;
    margin: 5px 0;
}

.location-filter__nearby {
    margin-top: 18px;
}

.location-filter__item {
    padding: 8px;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-filter__item:hover {
    background-color: #f5f5f5;
}

.location-filter__name {
    font-weight: 500;
    margin-right: 5px;
}

.location-filter__distance {
    color: #666;
    font-size: 13px;
}

.location-filter__passes-count {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.location-filter__empty {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 10px;
}