.mc-city-selector {
    position: relative;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.mc-city-current {
    cursor: pointer;
    padding: 10px;
    border: 2px dashed #dee2e6;
    transition: all 0.3s;
}

.mc-city-current:hover {
    border-color: #007cba;
    background: #fff;
}

.mc-city-search-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

#mc-city-search {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #dee2e6;
    font-size: 16px;
}

.mc-city-results {
    max-height: 300px;
    overflow-y: auto;
}

.mc-city-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f4;
    transition: background 0.2s;
}

.mc-city-item:hover,
.mc-city-item.selected {
    background: #e3f2fd;
}

.mc-city-item:last-child {
    border-bottom: none;
}

.mc-city-item strong {
    display: block;
    color: #212529;
}

.mc-city-item small {
    color: #6c757d;
}

.mc-notice {
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin: 10px 0;
}
