/* Autocomplete Suggestions Styles */
.search-box {
    position: relative;
}

.suggestions-dropdown {
    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 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-item.selected {
    background-color: #e8f4fd;
    border-left: 3px solid #4a90e2;
    padding-left: 13px;
}

.suggestion-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.suggestion-type {
    font-size: 12px;
    color: #888;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media print {
    .suggestions-dropdown {
        display: none !important;
    }
}
