/* =====================================================
   QUICK PROMPT CHIPS — paste inside <style> block
   ===================================================== */

.quick-prompts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 4px 0 12px;
    margin-left: 48px;
    animation: messageIn 0.4s ease forwards;
}

.quick-prompts.hidden { display: none; }

.prompt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    -webkit-tap-highlight-color: transparent;
    line-height: 1.3;
}

.prompt-chip:hover {
    background: rgba(79,70,229,0.08);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(79,70,229,0.15);
}

.prompt-chip:active { transform: scale(0.97); }

.prompt-chip i {
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.dark-mode .prompt-chip {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.dark-mode .prompt-chip:hover {
    background: rgba(129,140,248,0.15);
    border-color: rgba(129,140,248,0.3);
}

.dark-mode .prompt-chip i { color: var(--primary-light); }

@media (max-width: 480px) {
    .quick-prompts {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: 0;
        padding: 4px 4px 10px;
    }
    .quick-prompts::-webkit-scrollbar { display: none; }
    .prompt-chip {
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 14px;
    }
}