/* ============================================
   imbiss_ai Portal — Global Styles
   Kinetic Obsidian Design System
   ============================================ */

/* === Base === */
body {
  margin: 0;
  font-family: 'Geist', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Landing Page === */
.flash-update {
  animation: highlight 1.5s ease-out;
}

@keyframes highlight {
  0% {
    background-color: #F97316;
    color: white;
    transform: scale(1.1);
  }
  50% {
    background-color: #F97316;
    color: white;
    transform: scale(1.1);
  }
  100% {
    background-color: transparent;
    color: inherit;
    transform: scale(1);
  }
}

.chat-scroll::-webkit-scrollbar {
  width: 4px;
}

.chat-scroll::-webkit-scrollbar-thumb {
  background-color: #334155;
  border-radius: 4px;
}

/* === Blog Content (Detailseite) === */
.blog-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 2.5rem 0 1rem;
}

.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 2rem 0 0.75rem;
}

.blog-content p {
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.blog-content ul,
.blog-content ol {
  color: #cbd5e1;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.blog-content strong {
  color: white;
}

.blog-content a {
  color: #F97316;
  text-decoration: underline;
}

.blog-content blockquote {
  border-left: 3px solid #F97316;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-style: italic;
}

.blog-content img {
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  max-width: 100%;
}

.blog-content code {
  background: #334155;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.blog-content pre {
  background: #1E293B;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.blog-content pre code {
  background: none;
  padding: 0;
}
