/* node_modules/react-lazy-load-image-component/src/effects/blur.css */
.lazy-load-image-background.blur {
  filter: blur(15px);
}
.lazy-load-image-background.blur.lazy-load-image-loaded {
  filter: blur(0);
  transition: filter .3s;
}
.lazy-load-image-background.blur > img {
  opacity: 0;
}
.lazy-load-image-background.blur.lazy-load-image-loaded > img {
  opacity: 1;
  transition: opacity .3s;
}

/* app/javascript/components/features/recipes/css/markdown.css */
.markdown-content {
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
}
.markdown-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.markdown-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #111827;
}
.markdown-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.markdown-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.markdown-content p {
  margin-bottom: 1rem;
}
.markdown-content ul,
.markdown-content ol {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.markdown-content ul {
  list-style-type: disc;
}
.markdown-content ol {
  list-style-type: decimal;
}
.markdown-content li {
  margin-bottom: 0.25rem;
}
.markdown-content li > ul,
.markdown-content li > ol {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.markdown-content a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s;
}
.markdown-content a:hover {
  color: #1d4ed8;
}
.markdown-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.markdown-content figure {
  margin: 1.5rem 0;
}
.markdown-content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.markdown-content blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1rem;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: #6b7280;
}
.markdown-content code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.875em;
  color: #ef4444;
  background-color: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
}
.markdown-content pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}
.markdown-content pre code {
  color: #374151;
  background-color: transparent;
  padding: 0;
}
.markdown-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}
.markdown-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.markdown-content th,
.markdown-content td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  text-align: left;
}
.markdown-content th {
  background-color: #f9fafb;
  font-weight: 600;
}
.markdown-content tr:nth-child(even) {
  background-color: #f9fafb;
}
.markdown-content.premium {
  color: #1f2937;
}
.markdown-content.premium h1,
.markdown-content.premium h2,
.markdown-content.premium h3,
.markdown-content.premium h4 {
  color: #0f172a;
}
.markdown-content.premium a {
  color: #2563eb;
}
.markdown-content.premium blockquote {
  border-left-color: #fbbf24;
  background-color: #fffbeb;
}
:lang(ja) .markdown-content,
[lang=ja] .markdown-content {
  font-family: var(--font-primary);
  line-height: 1.8;
}
:lang(en) .markdown-content,
[lang=en] .markdown-content {
  font-family: var(--font-primary);
  line-height: 1.6;
}
:lang(zh-TW) .markdown-content,
[lang=zh-TW] .markdown-content,
:lang(zh-CN) .markdown-content,
[lang=zh-CN] .markdown-content {
  font-family: var(--font-primary);
  line-height: 1.8;
}
:lang(ko) .markdown-content,
[lang=ko] .markdown-content {
  font-family: var(--font-primary);
  line-height: 1.8;
}

/* app/javascript/components/features/map/css/recipe_show_map.css */
.recipe-place-map-container {
  width: 100%;
}
.recipe-place-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.place-locations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.place-location-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.2s ease;
}
.place-location-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.location-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.location-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.location-number {
  background-color: #1f2937;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 12px;
}
.location-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.location-details {
  margin-left: 40px;
  color: #6b7280;
  font-size: 14px;
}
.location-detail {
  margin-bottom: 8px;
}
.google-maps-btn {
  background-color: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}
.google-maps-btn:hover {
  background-color: #2563eb;
}
.google-maps-btn span {
  margin-left: 4px;
}
.no-locations-message {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  color: #6b7280;
}
.custom-marker {
  cursor: pointer;
}
.marker-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1f2937;
  color: white;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(31, 41, 55, 0.4);
  transition: transform 0.2s ease;
}
.marker-pin:hover {
  transform: scale(1.1);
  background-color: #111827;
}
.marker-number {
  color: white;
  font-size: 16px;
  font-weight: bold;
}
.mapboxgl-popup-content {
  padding: 0;
  border-radius: 8px;
}
.popup-content {
  padding: 16px;
  max-width: 250px;
}
.mapboxgl-popup-close-button {
  font-size: 18px;
  padding: 8px;
}

/* app/javascript/components/features/chat/css/chat.css */
.typing-animation {
  display: inline-block;
  min-height: 1.2em;
}
.typing-animation::after {
  content: "|";
  display: inline-block;
  animation: blink 1s infinite;
  opacity: 1;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.typing-animation.complete::after {
  display: none;
}
/* */
