/**
 * Hybrid Location Autocomplete Dropdown for Search
 * Matches address-autocomplete.css styles used on host registration
 */

/* Suggestions dropdown */
.search-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-autocomplete-dropdown.visible {
    display: block;
}

/* Suggestion items - same as .address-suggestion-item */
.search-autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s;
    display: flex;
    align-items: flex-start;
}

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

.search-autocomplete-item:hover,
.search-autocomplete-item.highlighted {
    background-color: #f5f5f5;
}

/* Icon - same as .suggestion-icon */
.search-autocomplete-item .sac-icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 10px;
    color: #e5573f;
    text-align: center;
    padding-top: 2px;
}

/* Text container - same as .suggestion-text */
.search-autocomplete-item .sac-text {
    flex-grow: 1;
}

.search-autocomplete-item .sac-main {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.search-autocomplete-item .sac-secondary {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* Current location option - same as .areasearch style */
.search-autocomplete-item.sac-current-location {
    color: #519b7a;
    font-weight: 500;
}

.search-autocomplete-item.sac-current-location .sac-icon {
    color: #519b7a;
}

.search-autocomplete-item.sac-current-location .sac-main {
    color: #519b7a;
    font-weight: 500;
}

.search-autocomplete-item.sac-current-location:hover {
    background-color: #f0f7f4;
}

/* Google attribution (required by TOS) */
.search-autocomplete-google-attr {
    padding: 8px 15px;
    text-align: right;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.search-autocomplete-google-attr img {
    height: 14px;
    vertical-align: middle;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .search-autocomplete-dropdown {
        max-height: 250px;
    }

    .search-autocomplete-item {
        padding: 15px;
    }

    .search-autocomplete-item .sac-main {
        font-size: 15px;
    }

    .search-autocomplete-item .sac-secondary {
        font-size: 13px;
    }
}
