.city-selector {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.current-city {
    cursor: pointer;
    color: #333;
    font-weight: 600;
    padding: 5px 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
}

.change-city-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    margin-left: 5px;
    vertical-align: middle;
}

/* Убираем фон и тени при наведении */
.change-city-btn:hover,
.change-city-btn:focus,
.change-city-btn:active {
    background: none !important;
    box-shadow: none !important;
    outline: none !important; /* убирает обводку в Firefox */
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px;
    width: 250px;
    display: none;
    margin-top: 5px;
}

.city-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.city-list li {
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.city-list li:last-child {
    border-bottom: none;
}

.city-list li:hover {
    background: #f5f5f5;
}