.quick-prompts-container {
    margin-top: 15px;
}

.quick-prompt-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
    padding: 5px 0;
}

.quick-prompt-item {
    display: inline-block;
    background-color: #f1f7ff;
    border: 1px solid #dbeafe;
    color: #3b82f6;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-bottom: 6px;
}

.quick-prompt-item:hover {
    background-color: #dbeafe;
    border-color: #93c5fd;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.quick-prompt-item:active {
    background-color: #bfdbfe;
    transform: translateY(0);
}