/* City Search Styles */
.city-search-wrapper {
    max-width: 500px;
}

.city-search-wrapper .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.city-search-wrapper .form-control:focus {
    border-color: #c64034;
    box-shadow: 0 0 0 0.2rem rgba(198, 64, 52, 0.15);
}

.city-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f5f5f5;
}

.suggestion-item.no-results {
    cursor: default;
    color: #666;
    text-align: center;
}

.suggestion-item.no-results:hover {
    background: white;
}

.suggestion-count {
    font-size: 12px;
    background: #c64034;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 10px;
}

.btn-all-cities {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(350deg, #c64034, #ed9e57);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(198, 64, 52, 0.2);
}

.btn-all-cities:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 64, 52, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .city-search-wrapper {
        max-width: 100%;
    }
}
