::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.flatpickr-calendar {
  font-size: 13px;
  z-index: 9999 !important;
}
body {
  background: linear-gradient(135deg, #FDFCFB, #E2D1C3);
  font-family: 'Inter', sans-serif;
}
#chat {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/* .user, .bot {
  padding: 10px 14px;
  max-width: 75%;
  border-radius: 20px;
} */
/* .user {
  background-color: #4ade80;
  color: white;
  align-self: flex-end;
}
.bot {
  background: linear-gradient(to right, #86EFAC, #FCD34D);
  color: #1F2937;
  align-self: flex-start;
} */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot, .user {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 75%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  line-height: 1.5;
  transition: transform 0.2s ease;
}

.bot {
  background: #f5f5f5;
  color: #333;
}

.user {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
}

.quick-button {
  background: #e0fbe2;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: background 0.2s;
}

.quick-button:hover {
  background: #bbf7d0;
}
