.search-container {
    position: relative;
    width: 100%;
}

.bg-suggestions-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Reduced width */
    max-width: 600px; /* Maximum width */
    min-width: 300px; /* Minimum width to ensure readability */
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 5px;
    border-radius: 4px;
}

.bg-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.bg-suggestion-item:hover {
    background-color: #f5f5f5;
}

.bg-highlight {
    background-color: #ffeb3b;
    padding: 0 2px;
}

.bg-suggestion-title {
    font-weight: bold;
    margin-bottom: 4px;
}

.bg-suggestion-keywords {
    font-size: 0.9em;
    color: #666;
}