/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 2000;
    padding: 0.5rem 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f3f4f6;
}

.search-result-item i {
    color: var(--text-secondary);
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.result-info {
    flex: 1;
    overflow: hidden;
}

.result-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.result-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}