.command-suggestions {
    position: absolute;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
}

.command-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.command-suggestion:hover {
    background: var(--accent-primary);
    color: white;
}

.command-suggestion:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.command-suggestions::-webkit-scrollbar {
    width: 6px;
}

.command-suggestions::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

.command-suggestions::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.command-suggestions::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

.ai-message {
    white-space: pre-wrap;
    font-family: monospace;
    line-height: 1.5;
}

.ai-message br {
    margin-bottom: 0.5em;
}
