.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
}

.search-results-section {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.search-results-section:last-child {
    border-bottom: none;
}

.search-results-section h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-item {
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
}

.result-item:hover {
    background-color: var(--hover-color);
}

.result-item h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.result-item p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

.search-wrapper {
    position: relative;
}

.highlight-result {
    background-color: rgba(255, 165, 0, 0.1);
    border: 2px solid #ff8c00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    transition: all 0.5s ease;
}

.highlight-result h4,
.highlight-result .location-title {
    color: #ff8c00 !important;
    font-weight: bold;
}

.highlight-result:hover {
    background-color: rgba(255, 165, 0, 0.2);
    border-color: #ff6b00;
}

.highlight-result:hover h4,
.highlight-result:hover .location-title {
    color: #ff6b00 !important;
}
.highlight-result:hover {
    background-color: rgba(255, 255, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}