:root {
  --petrol: #006b6b;
  --petrol-dark: #004f4f;
  --mint: #26d07c;
  --navy: #042c58;
  --ink: #172626;
  --muted: #627171;
  --line: #dfe7e6;
  --surface: #f5f8f7;
  --surface-accent: #e8f4f2;
  --white: #fff;
  --content-width: 1120px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(4, 44, 88, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color-scheme: light;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body:not(.login-page) {
  display: flex;
  flex-direction: column;
}

a {
  color: var(--petrol);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--petrol-dark);
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(38, 208, 124, 0.65);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 250px;
  height: auto;
}

.main-navigation {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 0.92rem;
}

.mobile-menu-toggle {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

.nav-link,
.logout-link {
  color: var(--ink);
  font-weight: 550;
  text-decoration: none;
}

.nav-link.active {
  color: var(--petrol);
}

.user-name {
  max-width: 180px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logout-link {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.logout-link:hover {
  color: var(--petrol);
  border-color: var(--petrol);
}

.site-main {
  flex: 1 0 auto;
  width: min(100% - 40px, var(--content-width));
  padding: clamp(56px, 8vw, 104px) 0 96px;
  margin: 0 auto;
}

.page-header {
  max-width: 760px;
  margin-bottom: clamp(52px, 7vw, 82px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--petrol);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-header h1 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-intro {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section-heading {
  display: flex;
  padding-bottom: 16px;
  margin-bottom: 18px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.86rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-categories {
  display: grid;
  gap: clamp(42px, 6vw, 68px);
}

.guide-card {
  position: relative;
  display: flex;
  min-height: 112px;
  padding: 26px 64px 25px 26px;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  color: var(--ink);
  background: var(--surface-accent);
  border-color: #c9e2de;
  transform: translateY(-2px);
}

.guide-card-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 650;
}

.download-meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-arrow.download-arrow {
  font-size: 1.4rem;
  font-weight: 600;
}

.empty-notice {
  padding: 28px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
}

.card-arrow {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--petrol);
  font-size: 1.25rem;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.guide-page .page-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.guide-sections {
  border-top: 1px solid var(--line);
}

.guide-section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(240px, 390px);
  gap: clamp(20px, 4vw, 54px);
  padding: 54px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.guide-section:not(:has(.guide-images)) {
  grid-template-columns: 54px minmax(0, 760px);
}

.step-number {
  color: var(--petrol);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step-content h2 {
  margin: -6px 0 18px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.prose {
  color: #3e4e4e;
}

.prose p {
  margin: 0 0 1em;
}

.prose p:last-child,
.prose ul:last-child,
.prose ol:last-child,
.prose blockquote:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  padding-left: 1.2em;
  margin: 0.8em 0;
}

.prose h3 {
  margin: 1.5em 0 0.5em;
  color: var(--navy);
  font-size: 1rem;
}

.prose blockquote {
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: var(--surface-accent);
  border-left: 3px solid var(--mint);
}

.prose code {
  padding: 0.1em 0.35em;
  font-size: 0.9em;
  background: var(--surface);
  border-radius: 4px;
}

.guide-images {
  display: grid;
  gap: 12px;
}

.guide-image {
  display: block;
  padding: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.guide-image img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 7px;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 52px;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 92px;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
}

.footer-inner a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}

/* Anmeldung */
.login-page {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  background: var(--surface);
  place-items: center;
}

.login-shell {
  display: grid;
  width: min(100%, 1020px);
  min-height: 620px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.login-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy);
}

.login-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 44, 88, 0.05), rgba(4, 44, 88, 0.42));
}

.login-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form-panel {
  display: flex;
  padding: clamp(38px, 7vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.login-logo {
  width: min(100%, 340px);
  margin-bottom: 70px;
}

.login-form-panel h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.login-intro {
  margin: 0 0 30px;
  color: var(--muted);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #435252;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd6d5;
  border-radius: 10px;
}

.form-field input:focus {
  border-color: var(--petrol);
  outline: 3px solid rgba(0, 107, 107, 0.12);
}

.login-button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  color: var(--white);
  font-weight: 650;
  cursor: pointer;
  background: var(--petrol);
  border: 0;
  border-radius: 10px;
}

.login-button:hover {
  background: var(--petrol-dark);
}

.form-error {
  padding: 12px 14px;
  margin: 0 0 22px;
  color: #772727;
  font-size: 0.9rem;
  background: #fff0f0;
  border: 1px solid #f1cccc;
  border-radius: 10px;
}

/* KI Chat */
.chat-page {
  max-width: 960px;
}

.chat-page-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.chat-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.chat-toolbar {
  display: flex;
  min-height: 68px;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.chat-toolbar > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-toolbar strong {
  color: var(--navy);
}

.chat-status {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-status > span:first-child {
  width: 7px;
  height: 7px;
  background: #d09a26;
  border-radius: 50%;
}

.chat-status.ready > span:first-child {
  background: var(--mint);
}

.chat-status.unavailable > span:first-child {
  background: #bf4545;
}

.chat-status.expired > span:first-child {
  background: #bf4545;
}

.chat-reset {
  padding: 7px 11px;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chat-reset:hover {
  color: var(--petrol);
  border-color: var(--petrol);
}

.chat-reset:disabled {
  cursor: wait;
  opacity: 0.55;
}

.chat-messages {
  display: flex;
  min-height: 430px;
  max-height: min(62vh, 680px);
  padding: clamp(20px, 4vw, 36px);
  overflow-y: auto;
  flex-direction: column;
  gap: 18px;
  -ms-overflow-style: auto;
  scrollbar-width: auto;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: auto;
  height: auto;
}

.chat-empty {
  display: grid;
  flex: 1;
  min-height: 330px;
  color: var(--muted);
  text-align: center;
  place-content: center;
  justify-items: center;
}

.chat-empty[hidden] {
  display: none;
}

.chat-empty-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--petrol);
  background: var(--surface-accent);
  border-radius: 18px;
  place-items: center;
}

.chat-empty-icon svg {
  width: 28px;
  height: 28px;
}

.chat-empty h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 550;
}

.chat-empty p {
  margin: 0;
  font-size: 0.92rem;
}

.chat-message {
  width: fit-content;
  max-width: min(82%, 680px);
  padding: 14px 17px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 4px 16px 16px;
}

.chat-message.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--petrol);
  border-radius: 16px 4px 16px 16px;
}

.chat-message.error {
  color: #772727;
  background: #fff0f0;
  border: 1px solid #f1cccc;
}

.chat-message.pending {
  color: var(--muted);
}

.chat-message.failed {
  opacity: 0.78;
}

.chat-message-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.75rem;
  opacity: 0.72;
}

.chat-message-text {
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.chat-message.assistant .chat-message-text {
  overflow-x: auto;
  white-space: normal;
}

.chat-message-text p {
  margin: 0 0 0.85em;
}

.chat-message-text p:last-child,
.chat-message-text ul:last-child,
.chat-message-text ol:last-child,
.chat-message-text pre:last-child,
.chat-message-text .chat-code-block:last-child,
.chat-message-text blockquote:last-child,
.chat-message-text table:last-child {
  margin-bottom: 0;
}

.chat-message-text h3,
.chat-message-text h4,
.chat-message-text h5 {
  margin: 1.15em 0 0.5em;
  color: var(--navy);
  line-height: 1.25;
}

.chat-message-text h3:first-child,
.chat-message-text h4:first-child,
.chat-message-text h5:first-child {
  margin-top: 0;
}

.chat-message-text h3 {
  font-size: 1.18rem;
}

.chat-message-text h4 {
  font-size: 1.05rem;
}

.chat-message-text h5 {
  font-size: 0.95rem;
}

.chat-message-text ul,
.chat-message-text ol {
  padding-left: 1.35em;
  margin: 0.65em 0 1em;
}

.chat-message-text li + li {
  margin-top: 0.25em;
}

.chat-message-text a {
  overflow-wrap: anywhere;
}

.chat-message-text blockquote {
  padding: 0.7em 0.9em;
  margin: 0.8em 0;
  color: #435252;
  background: var(--surface-accent);
  border-left: 3px solid var(--mint);
}

.chat-message-text code {
  padding: 0.1em 0.35em;
  font-size: 0.9em;
  background: #e8eded;
  border-radius: 4px;
}

.chat-message-text pre {
  max-width: 100%;
  padding: 14px;
  margin: 0.8em 0 1em;
  overflow-x: auto;
  color: #e9f2f1;
  background: #183535;
  border-radius: 10px;
}

.chat-code-block {
  position: relative;
  margin: 0.8em 0 1em;
}

.chat-code-block pre {
  margin: 0;
  padding-top: 44px;
}

.chat-code-copy {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  min-width: 76px;
  padding: 5px 9px;
  color: #dce9e8;
  font-size: 0.72rem;
  cursor: pointer;
  background: #294848;
  border: 1px solid #466363;
  border-radius: 6px;
}

.chat-code-copy:hover {
  color: var(--white);
  background: #365757;
}

.chat-message-text pre code {
  padding: 0;
  color: inherit;
  font-size: 0.84rem;
  white-space: pre;
  background: transparent;
}

.chat-message-text table {
  width: 100%;
  min-width: 360px;
  margin: 0.8em 0 1em;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.chat-message-text th,
.chat-message-text td {
  padding: 8px 10px;
  text-align: left;
  border: 1px solid var(--line);
}

.chat-message-text th {
  color: var(--navy);
  background: var(--surface-accent);
}

.chat-message-text hr {
  margin: 1em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.chat-message-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.chat-message-action {
  display: inline-block;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.74rem;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
}

.chat-message-action:hover {
  color: var(--petrol);
  border-color: var(--petrol);
}

.chat-request-state {
  align-self: flex-start;
  max-width: min(82%, 680px);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  background: var(--surface);
  border-radius: 4px 14px 14px;
}

.chat-request-state.pending {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.chat-loading-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.chat-loading-dots > span {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  animation: chat-loading-dot 1.15s ease-in-out infinite;
}

.chat-loading-dots > span:nth-child(2) {
  animation-delay: 0.16s;
}

.chat-loading-dots > span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes chat-loading-dot {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-request-state.error {
  color: #772727;
  background: #fff0f0;
  border: 1px solid #f1cccc;
}

.chat-request-state .chat-message-actions {
  margin-top: 8px;
}

.chat-code-copy.chat-message-action {
  padding: 5px 9px;
  color: #dce9e8;
  background: #294848;
  border: 1px solid #466363;
  border-radius: 6px;
}

.chat-code-copy.chat-message-action:hover {
  color: var(--white);
  background: #365757;
  border-color: #466363;
}

.chat-composer {
  display: flex;
  gap: 10px;
  padding: 14px;
  align-items: flex-end;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-composer textarea {
  width: 100%;
  min-height: 48px;
  max-height: 180px;
  padding: 12px 14px;
  resize: none;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 12px;
}

.chat-composer textarea:focus {
  background: var(--white);
  border-color: var(--petrol);
  outline: 3px solid rgba(0, 107, 107, 0.12);
}

.chat-send {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--white);
  cursor: pointer;
  background: var(--petrol);
  border: 0;
  border-radius: 12px;
  place-items: center;
}

.chat-send:hover {
  background: var(--petrol-dark);
}

.chat-send.is-cancel {
  background: #a83d3d;
}

.chat-send.is-cancel:hover {
  background: #872f2f;
}

.chat-send:disabled {
  cursor: wait;
  opacity: 0.55;
}

.chat-send svg {
  width: 21px;
  height: 21px;
}

.chat-note {
  padding: 0 18px 14px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 185px;
  }

  .user-name {
    display: none;
  }

  .main-navigation {
    gap: 12px;
  }

  .nav-link {
    display: block;
  }

  .guide-section,
  .guide-section:not(:has(.guide-images)) {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .guide-images {
    grid-column: 2;
    margin-top: 8px;
  }

  .login-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .login-visual {
    display: none;
  }

  .login-logo {
    margin-bottom: 55px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .footer-inner,
  .site-main {
    width: min(100% - 28px, var(--content-width));
  }

  .brand img {
    width: 158px;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-menu-toggle.is-open .menu-line:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open .menu-line:nth-of-type(3) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open .menu-line:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 12px 14px 18px;
    align-items: stretch;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(4, 44, 88, 0.08);
    backdrop-filter: blur(14px);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation .nav-link,
  .main-navigation .logout-link {
    padding: 12px 10px;
    font-size: 1rem;
    border: 0;
    border-radius: 8px;
  }

  .main-navigation .nav-link:hover,
  .main-navigation .logout-link:hover {
    background: var(--surface);
  }

  .site-main {
    padding-top: 46px;
    padding-bottom: 70px;
  }

  .page-header {
    margin-bottom: 46px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .chat-page {
    width: 100%;
    padding-top: 34px;
  }

  .chat-page-header {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .chat-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .chat-toolbar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .chat-messages {
    min-height: 390px;
    padding: 20px 14px;
  }

  .chat-message {
    max-width: 90%;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .guide-section {
    padding: 38px 0;
  }

  .footer-inner {
    min-height: 120px;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .login-page {
    padding: 14px;
  }

  .login-form-panel {
    padding: 36px 24px 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

  .chat-loading-dots > span {
    animation: none;
    opacity: 0.65;
  }
}
