/* Minimal styling for the chat application */
.message {
  @apply mb-4 p-4 rounded-lg max-w-[80%];
}

.user-message {
  @apply bg-blue-500 text-white ml-auto;
}

.ai-message {
  @apply bg-gray-200 text-gray-800 mr-auto;
}

#chat-history {
  display: flex;
  flex-direction: column;
}

.htmx-request button {
  @apply opacity-50 cursor-not-allowed;
}