/* src/components/ChatInterface/QuickPrompts.css */

.quick-prompts {
  background: var(--bg-main); /* Match conversation background */
  padding: 16px;
  width: 100%;
}

.prompts-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  justify-content: center;
}

.prompts-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.prompt-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: white;
  border: 1.5px solid #edf2f7;
  border-radius: 16px;
  cursor: pointer;
  min-width: 110px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.prompt-button:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prompt-icon {
  font-size: 1.4rem;
}

.prompt-text {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 640px) {
  .prompts-grid {
    justify-content: flex-start;
    padding: 0 4px 12px;
  }
  
  .prompt-button {
    min-width: 100px;
    padding: 12px 10px;
  }
}