﻿#suggestions {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    background: white;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

    .suggestion-item:last-child {
        border-bottom: none;
    }

    .suggestion-item:hover, .suggestion-item.active {
        background-color: #f5f5f5;
    }

.highlight {
    font-weight: bold;
    color: #4CAF50;
}

.no-results {
    padding: 12px 20px;
    color: #888;
    font-style: italic;
}
