/* 管理画面用サジェスト機能のスタイル */
.suggestions-container {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

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

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #f8f9fa;
}

.suggestion-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.suggestion-category {
    font-size: 12px;
    color: #666;
}

.suggestion-text mark {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

/* 検索ボックスのスタイル調整 */
.search-box {
    position: relative;
}
