/* City Selector UI Styles */
.city-selector-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

#citySearch {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#citySearch:focus {
    border-color: #007bff;
}

.results-dropdown {
    position: absolute;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    z-index: 1005;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
}

.results-dropdown div {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #334155;
    transition: background 0.2s ease;
}

.results-dropdown div:hover,
.results-dropdown div.active {
    background-color: #f8fafc;
    color: #007bff;
}

.results-dropdown div:last-child {
    border-bottom: none;
}

.results-dropdown strong {
    color: #1e293b;
    font-weight: 700;
}