.location-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    min-width: 300px;
}

.search-result-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    position: relative;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:before {
    content: '\f041';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    opacity: 0.6;
    font-size: 12px;
}

.search-result-item:hover:before {
    opacity: 1;
}

.search-loading,
.search-error,
.search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: normal;
    font-size: 14px;
}

.search-loading:before {
    content: '\f251';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

.search-error {
    color: #dc3545;
    background-color: #f8d7da;
}

.search-error:before {
    content: '\f251';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

.search-no-results {
    color: #6c757d;
    background-color: #f8f9fa;
}

.search-no-results:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

.search-results-list {
    max-height: 220px;
    overflow-y: auto;
}

/* Custom scrollbar for better appearance */
.search-results-list::-webkit-scrollbar {
    width: 6px;
}

.search-results-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.search-results-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.search-results-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
