/* 翻訳チャットアプリ用カスタムスタイル */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

/* チャット吹き出しのトランジション */
#messages > div {
  animation: fadeIn 0.18s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

code {
  font-family: "Consolas", "Menlo", monospace;
}
