/* City dropdown styles for registration form */
#cityDropdown {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    z-index: 1000;
    position: absolute;
    width: 100%;
    padding: 0;
}
#cityDropdown .dropdown-item-city {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    transition: background 0.2s;
}
#cityDropdown .dropdown-item-city:last-child {
    border-bottom: none;
}
#cityDropdown .dropdown-item-city:hover, #cityDropdown .dropdown-item-city.active {
    background: #e9ecef;
    color: #007bff;
}
#citySearch {
    position: relative;
    z-index: 1100;
}
