#vscode-suggest-box {
    position: absolute;
    background-color: var(--suggest-bg, #252526);
    color: var(--suggest-color, #ffffff);
    border: 1px solid var(--suggest-border, #454545);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 10000;
    min-width: 250px;
    max-height: 250px;
    overflow-y: auto;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

#vscode-suggest-desc {
    position: absolute;
    background-color: var(--suggest-bg, #252526);
    color: var(--suggest-desc, #cccccc);
    border: 1px solid var(--suggest-border, #454545);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 10000;
    width: 300px;
    padding: 8px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    display: none;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.suggest-item {
    padding: 4px 8px;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggest-item-active {
    background-color: var(--suggest-active, #094771);
}

.suggest-nickname-normal {
    color: var(--suggest-color, #ffffff);
    font-weight: bold;
}

.suggest-nickname-match {
    color: var(--suggest-match, #569cd6);
    font-weight: bold;
}

.suggest-cate {
    color: var(--suggest-cate, #888888);
    font-size: 11px;
    margin-left: 15px;
    font-weight: normal;
}
