:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #24191a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(89, 32, 32, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(120, 73, 34, 0.12), transparent 24%),
    linear-gradient(180deg, #ece5e0 0%, #dfd3cc 42%, #d2c2ba 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

/* === Accessibility & modern UX (2026) === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 1.25rem;
  background: #1b1416;
  color: #fff4ef;
  border-radius: 0 0 0.6rem 0;
  font-weight: 700;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  outline: 3px solid #f4bc90;
  outline-offset: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f4bc90;
  outline-offset: 2px;
  border-radius: 6px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(127, 29, 29, 0.55);
  background: #fff;
}

.ext-icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.4em;
  vertical-align: -0.06em;
  opacity: 0.72;
  flex-shrink: 0;
}

main.page-wrap {
  flex: 1 0 auto;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27,20,22,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand .label {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: #cba39a;
}

.brand .title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff4ef;
}

.top-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.top-nav a {
  color: #fff4ef;
  font-weight: 600;
}

.top-nav a:hover {
  color: #f4a261;
}

.page-wrap {
  padding: 2rem 0 3rem;
}

.flash-wrap {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.flash {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
}

.flash-success { background: #dff3e2; color: #215732; }
.flash-warning { background: #fff1d6; color: #7a5312; }
.flash-danger { background: #f9d8d8; color: #7a1f1f; }
.flash-info { background: #dce9f7; color: #214665; }

.landing-hero,
.dashboard-section,
.form-section {
  padding: 3rem 0;
}

.landing-shell,
.document-panel,
.form-panel {
  border-radius: 2rem;
  border: 1px solid rgba(42,24,28,0.12);
  background: rgba(242,236,232,0.94);
  padding: 2.5rem;
  box-shadow: 0 22px 48px rgba(42, 24, 28, 0.12);
}

.landing-shell-single {
  max-width: 920px;
  margin: 0 auto;
}

.landing-label,
.eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #8b2130;
  font-size: 0.8rem;
  font-weight: 700;
}

.landing-shell h1,
.document-panel h2,
.form-panel h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.landing-shell p,
.document-panel p,
.form-panel p {
  color: #5f4748;
  line-height: 1.8;
  font-size: 1.05rem;
}

.landing-actions,
.panel-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button {
  background: linear-gradient(135deg, #7f1d1d, #c2410c);
  color: #fffaf8;
  box-shadow: 0 16px 36px rgba(42, 24, 28, 0.28);
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #5f1616, #9a3412);
}

.button-alt {
  border: 1px solid rgba(42,24,28,0.14);
  color: #24191a;
  background: rgba(239,231,225,0.82);
}

.button-alt:hover {
  background: rgba(245,239,234,0.96);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.search-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

.search-form input {
  flex: 1 1 320px;
}

.user-create-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: end;
  margin: 1rem 0 2rem;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 58px;
  margin: 0;
  font-weight: 700;
}

.checkbox-row input {
  width: auto;
}

.form-submit {
  display: flex;
  align-items: end;
}

form label {
  display: block;
  margin: 1rem 0 0.45rem;
  font-weight: 700;
  color: #3b2b2c;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(42,24,28,0.16);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.75);
  font: inherit;
  color: #24191a;
}

textarea {
  resize: vertical;
}

.document-list {
  display: grid;
  gap: 1rem;
}

.user-list {
  display: grid;
  gap: 1rem;
}

.document-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(42,24,28,0.12);
  background: rgba(247,242,238,0.96);
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(42, 24, 28, 0.08);
}

.document-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
}

.user-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-radius: 1.5rem;
  border: 1px solid rgba(42,24,28,0.12);
  background: rgba(247,242,238,0.96);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 16px 32px rgba(42, 24, 28, 0.08);
}

.user-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.document-card h3 a:hover {
  color: #8b2130;
}

.meta,
.tags {
  color: #6e5a5b;
  font-size: 0.95rem;
}

.attachment-list {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d6d9df;
}

.attachment-list h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: #1f2937;
}

.attachment-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attachment-list li {
  background: #f5f7fb;
  border: 1px solid #d9dfeb;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}

.attachment-list li a {
  display: inline-block;
  font-weight: 600;
  color: #1f4f82;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.attachment-list li a:hover {
  text-decoration: underline;
}

.attachment-list li small {
  display: block;
  color: #667085;
  font-size: 0.92rem;
}

.empty-state {
  padding: 1rem 0;
  color: #5f4748;
}

@media (max-width: 860px) {
  .panel-head {
    flex-direction: column;
  }

  .user-create-form {
    grid-template-columns: 1fr;
  }

  .checkbox-row {
    min-height: auto;
  }

  .user-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .user-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .landing-shell,
  .document-panel,
  .form-panel {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .top-nav {
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .brand .label {
    letter-spacing: 0.22em;
  }

  .brand .title {
    font-size: 0.92rem;
  }
}
.inline-form {
  display: inline-flex;
  margin: 0;
}

.inline-form button {
  font: inherit;
}

.button-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.8rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  color: #fffaf8;
  background: linear-gradient(135deg, #7a1f1f, #b91c1c);
  box-shadow: 0 16px 36px rgba(122, 31, 31, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.button-delete:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #5f1616, #991b1b);
  box-shadow: 0 20px 40px rgba(122, 31, 31, 0.28);
}

.button-delete-compact {
  min-height: auto;
  padding: 0.95rem 1.7rem;
  font-size: inherit;
}

/* === Footer === */
.site-footer {
  border-top: 1px solid rgba(42, 24, 28, 0.12);
  background: rgba(232, 224, 218, 0.6);
  color: #6e5a5b;
  padding: 1.4rem 0;
  margin-top: 2rem;
  flex-shrink: 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #8b2130;
}

/* === Legal pages (Datenschutz / Impressum) === */
.legal-section {
  padding: 3rem 0;
}
.legal-panel {
  max-width: 920px;
  margin: 0 auto;
}
.legal-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 0.6rem;
}
.legal-card {
  margin-top: 1.25rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(42, 24, 28, 0.12);
  background: rgba(247, 242, 238, 0.94);
  box-shadow: 0 14px 28px rgba(42, 24, 28, 0.08);
}
.legal-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  color: #3b2b2c;
}
.legal-card p,
.legal-card li {
  color: #5f4748;
  line-height: 1.7;
  font-size: 0.98rem;
}
.legal-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.25rem;
}
.legal-card code {
  background: rgba(42, 24, 28, 0.08);
  padding: 0.05rem 0.35rem;
  border-radius: 0.35rem;
  font-size: 0.85em;
}

/* === Modern Bright DMS Theme === */
:root {
  --primary: #0a2540;
  --primary-hover: #12385f;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-warm: #f4bc90;
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --bg: #f6f9fc;
  --bg-soft: #edf4fb;
  --bg-elev: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(15, 23, 42, 0.16);
  --shadow-sm: 0 8px 22px rgba(10, 37, 64, 0.06);
  --shadow: 0 18px 44px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 28px 70px rgba(10, 37, 64, 0.14);
}

body {
  color: var(--text);
  background:
    radial-gradient(900px 520px at 88% 0%, rgba(14, 165, 233, 0.13), transparent 62%),
    radial-gradient(780px 440px at 8% 100%, rgba(244, 188, 144, 0.18), transparent 66%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 48%, #eef6fb 100%);
}

.skip-link {
  background: var(--primary);
  color: #fff;
}

.skip-link:focus,
.skip-link:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-color: var(--accent);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
}

.nav-wrap {
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.22);
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand .label {
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 800;
}

.brand .title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.03em;
}

.top-nav {
  gap: 0.2rem;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 0.6rem;
  color: var(--text-muted);
  font-weight: 650;
  transition: color 0.18s ease, background 0.18s ease;
}

.top-nav a:hover {
  color: var(--primary);
  background: rgba(10, 37, 64, 0.06);
}

.page-wrap {
  padding: clamp(2rem, 5vw, 4rem) 0 3rem;
}

.flash {
  border: 1px solid transparent;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.flash-success { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
.flash-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.flash-danger { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.flash-info { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }

.landing-hero,
.dashboard-section,
.form-section,
.legal-section {
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.landing-shell,
.document-panel,
.form-panel,
.legal-panel {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.landing-shell,
.document-panel,
.form-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.landing-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1120px;
}

.landing-copy {
  max-width: 610px;
}

.landing-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-label::before,
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
}

.landing-shell h1,
.document-panel h2,
.form-panel h2,
.legal-panel h2 {
  color: var(--text);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.document-panel h2,
.form-panel h2,
.legal-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.landing-shell p,
.document-panel p,
.form-panel p,
.legal-card p,
.legal-card li {
  color: var(--text-muted);
}

.portal-visual {
  position: relative;
}

.portal-window {
  min-height: 320px;
  border-radius: 1.4rem;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
    radial-gradient(420px 220px at 20% 0%, rgba(14,165,233,0.32), transparent 60%),
    var(--primary);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.14);
}

.window-dots {
  display: flex;
  gap: 0.42rem;
  margin-bottom: 1.4rem;
}

.window-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
}

.window-line,
.window-card {
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

.window-line {
  width: 72%;
  height: 0.8rem;
  margin-bottom: 0.9rem;
}

.window-line.is-wide {
  width: 92%;
}

.window-card {
  height: 72px;
  border-radius: 1rem;
  margin-top: 1.1rem;
  background: rgba(255,255,255,0.13);
}

.window-card.is-muted {
  opacity: 0.66;
}

.portal-trust {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portal-trust li {
  padding: 0.48rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.14);
}

.login-modern {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.login-points {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.login-points li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-muted);
  font-weight: 600;
}

.login-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.14);
}

.button,
.button-alt,
.button-delete {
  min-height: 46px;
  border-radius: 0.75rem;
  padding: 0.82rem 1.2rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(10, 37, 64, 0.65);
}

.button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.button-alt {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border-strong);
}

.button-alt:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.button-delete {
  min-height: 46px;
  border-radius: 0.75rem;
  background: #b91c1c;
  box-shadow: 0 12px 24px -12px rgba(185, 28, 28, 0.6);
}

.button-delete:hover {
  background: #991b1b;
  box-shadow: 0 16px 28px -14px rgba(185, 28, 28, 0.68);
}

form label {
  color: var(--text);
  font-weight: 750;
}

input,
textarea,
select {
  border-color: var(--border-strong);
  background: #fff;
  color: var(--text);
  border-radius: 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.panel-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.35rem;
}

.search-form {
  padding: 1rem;
  border-radius: 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.document-card,
.user-card,
.legal-card,
.attachment-list li {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.document-card,
.user-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.document-card:hover,
.user-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.document-card h3 a,
.attachment-list li a {
  color: var(--primary);
}

.document-card h3 a:hover,
.attachment-list li a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

.meta,
.tags,
.attachment-list li small,
.empty-state,
.footer-copy {
  color: var(--text-subtle);
}

.tags {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary);
  font-weight: 650;
}

.attachment-list {
  border-top-color: var(--border);
}

.attachment-list h3 {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-subtle);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

.legal-card h3 {
  color: var(--text);
}

.legal-card code {
  color: var(--primary);
  background: rgba(10, 37, 64, 0.08);
}

@media (max-width: 900px) {
  .landing-modern,
  .login-modern {
    grid-template-columns: 1fr;
  }

  .portal-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    align-items: flex-start;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .top-nav a {
    padding: 0.45rem 0.6rem;
  }

  .brand .label {
    letter-spacing: -0.01em;
  }

  .landing-actions,
  .panel-actions,
  .action-row,
  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-alt,
  .button-delete {
    width: 100%;
  }
}

/* === Print === */
@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .landing-actions,
  .panel-actions,
  .action-row,
  .user-actions {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .landing-shell,
  .document-panel,
  .form-panel,
  .legal-card {
    box-shadow: none;
    border-color: #ccc;
  }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
