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

:root {
  --primary: #1a1a1a;
  --accent: #f37d07;
  --bg-light: #f9f9f9;
  --bg-dark: #000000;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --font-sans: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  background-color: #ffffff;
  color: var(--text-dark);
}

.bg_img {
  background-image: url(../../../account/login_bg.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  /* height: 100vh; */
}

hr {
  border: none;                /* Entfernt Standard-Grenzen */
  border-top: 1px solid var(--primary);   /* Nur obere Linie anzeigen */
  margin: 1rem 0;              /* Abstand oben und unten */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p, li {
  font-size: 1.125rem;
  line-height: 1.7;
  /*margin-bottom: 1rem;*/
}

/* === HEADER === */
header {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 60px;
}

/* === NAVIGATION === */
.menu-toggle {
  display: none;
  background: none;
  color: var(--text-light);
  font-size: 1.75rem;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  z-index: 10000;
}

.menu-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s, color 0.3s;
}

nav .nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

nav .nav-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0.35rem;
  flex: 0 0 auto;
}

nav .nav-brand span {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

nav a:hover,
nav a:focus {
  background-color: var(--text-light);
  color: var(--bg-dark);
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.floating-login-hint {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 1rem;
  left: 1rem;
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem 0.55rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
}

.floating-login-hint span {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.floating-login-hint .btn {
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.1;
}

.floating-login-hint .btn:hover,
.floating-login-hint .btn:focus {
  background-color: #d96d05;
}

.floating-login-hint.freshness-review-hint {
  top: 5.8rem;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 2rem));
  max-width: min(920px, calc(100% - 2rem));
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 149, 6, 0.45);
  background: rgba(18, 18, 18, 0.96);
  gap: 0.9rem;
  justify-content: space-between;
  align-items: center;
}

.freshness-review-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.freshness-review-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.freshness-review-copy span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.95;
}

.freshness-review-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.freshness-review-actions form {
  margin: 0;
}

.freshness-review-actions .btn {
  padding: 0.55rem 0.95rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.1;
}

.freshness-review-actions .freshness-decline-btn {
  background-color: #3a3a3a;
}

.freshness-review-actions .freshness-decline-btn:hover,
.freshness-review-actions .freshness-decline-btn:focus {
  background-color: #2f2f2f;
}

.overlap-count-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(243, 125, 7, 0.94);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  border: 2px solid #fff;
}

.pb-cluster-marker {
  background: transparent;
  border: none;
}

.pb-cluster-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url('/assets/img/marker_cluster.php');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 7px rgba(242, 124, 7, 0.32),
    0 0 18px rgba(242, 124, 7, 0.55);
}

.pb-cluster-count {
  color: #1a1a1a;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.floating-login-hint.freshness-review-hint.freshness-review-hint--notice {
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  nav {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  nav.open {
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a {
    font-size: 1.5rem;
    padding: 1rem;
    white-space: normal;
    text-align: center;
    max-width: min(92vw, 36rem);
  }

  nav .nav-brand {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.4rem;
  }

  nav .nav-brand img {
    width: 44px;
    height: 44px;
  }

  nav .nav-brand span {
    font-size: 1.15rem;
  }

  nav a:not(.nav-brand) {
    font-size: 1.5rem;
  }

  .floating-login-hint {
    left: 0.75rem;
    right: auto;
    top: auto;
    bottom: 1rem;
    max-width: calc(100% - 1.5rem);
    justify-content: space-between;
    z-index: 1040;
  }

  .floating-login-hint.freshness-review-hint {
    left: 0.75rem;
    right: 0.75rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    width: auto;
    max-width: none;
    justify-content: space-between;
    align-items: stretch;
  }

  .freshness-review-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 769px) {
  nav#mobilmenue {
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/* === BUTTONS === */
.btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn:hover,
.btn:focus {
  background-color: #333;
  outline: 3px solid var(--accent);
}

.btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
  border: none;
}

.btn:disabled:hover,
.btn:disabled:focus {
  outline: none;
  background-color: #ccc;
  color: #666;
}


/* === CONTENT === */
main {
  padding: 5.5rem 0.5rem 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 324.8px);
}

section {
  background: var(--bg-light);
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

section.markdown-content {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 249, 241, 0.95) 0%, rgba(255, 255, 255, 1) 16rem),
    radial-gradient(circle at top right, rgba(243, 125, 7, 0.08), transparent 18rem),
    #fff;
  border: 1px solid rgba(243, 125, 7, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.markdown-content > :first-child {
  margin-top: 0;
}

.markdown-content > :last-child {
  margin-bottom: 0;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.markdown-content h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.markdown-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.markdown-content h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.markdown-content p,
.markdown-content li {
  font-size: 1.08rem;
  line-height: 1.9;
}

.markdown-content p,
.markdown-content ul,
.markdown-content ol,
.markdown-content blockquote,
.markdown-content pre,
.markdown-content hr {
  margin: 0 0 1.2rem;
}

.markdown-content ul,
.markdown-content ol {
  padding-left: 1.5rem;
}

.markdown-content li + li {
  margin-top: 0.4rem;
}

.markdown-content a {
  color: #ab5800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.markdown-content a:hover,
.markdown-content a:focus {
  color: #7d4000;
}

.markdown-content blockquote {
  margin-left: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 1rem 1rem 0;
  background: rgba(243, 125, 7, 0.08);
  color: #51300d;
}

.markdown-content blockquote p {
  margin-bottom: 0;
}

.markdown-content code {
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  background: #f1f4f7;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95em;
}

.markdown-content pre {
  overflow-x: auto;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: #18212b;
  color: #f7fafc;
}

.markdown-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.markdown-content hr {
  margin: 2rem 0;
  border-top-color: rgba(26, 26, 26, 0.16);
}

.opener {
  text-align: center;
  margin-bottom: 2rem;
}

.opener h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.opener_start {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0rem;
}

.opener p {
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

body.public-page {
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.public-main {
  max-width: 900px;
  min-height: calc(100vh - 324.8px);
  padding-top: 5.5rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  padding-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.public-main section {
  background: var(--bg-light);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 2rem;
}

.public-main .opener {
  margin-bottom: 2rem;
  text-align: center;
}

.public-main section.opener {
  background: var(--bg-light);
  border: none;
  text-align: center;
}

.public-main .opener h1 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.public-main .opener p {
  margin: 0;
  max-width: none;
  color: var(--text-dark);
  font-size: 1.25rem;
  line-height: 1.6;
}

.public-main h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.public-main h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.public-main p,
.public-main li {
  overflow-wrap: anywhere;
}

.public-main .page-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.public-main .discover-map-section {
  padding: clamp(0.85rem, 2.4vw, 1.1rem);
}

@media (max-width: 640px) {
  .public-main {
    padding-top: 7rem;
  }

  .public-main .opener h1 {
    font-size: 2rem;
  }

  .public-main .opener p {
    font-size: 1.1rem;
  }
}

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

.home-title {
  margin: 0.5rem;
}

.home-opener-lead {
  margin-bottom: 0.75rem;
}

.home-opener-copy {
  margin-bottom: 1rem;
}

.home-cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-cta-row-left {
  justify-content: flex-start;
}

.home-opener-meta {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.home-link-reset {
  text-decoration: none;
}

.home-trust-section {
  background-color: #fffbe6;
  border-left: 6px solid var(--accent);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.home-trust-title {
  margin-top: 0;
}

.home-trust-list {
  margin-top: 0.75rem;
}

.home-trust-end {
  margin-bottom: 0;
}

.home-tip-text {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.home-next-links {
  margin-bottom: 0;
}

.home-next-links a {
  text-decoration: underline;
}

.home-footer-copy {
  font-size: 1rem;
}

body.home-page {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-main {
  max-width: 980px;
  min-height: auto;
  padding-top: clamp(6.5rem, 11vw, 10rem);
  padding-left: clamp(0.8rem, 3vw, 1.25rem);
  padding-right: clamp(0.8rem, 3vw, 1.25rem);
}

.home-main,
.home-main section,
.home-main p,
.home-main li,
.home-main a,
.home-main h1,
.home-main h2,
.home-main h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.home-main section {
  padding: clamp(1rem, 3.2vw, 1.45rem);
}

.home-main .home-title {
  margin-inline: auto;
  max-width: 24ch;
  text-wrap: balance;
}

.home-main .home-opener-lead,
.home-main .home-opener-copy,
.home-main .home-opener-meta {
  margin-inline: auto;
  max-width: 68ch;
}

.home-main .home-cta-row {
  align-items: stretch;
  justify-content: center;
}

.home-main .home-cta-row .btn,
.home-main .home-inline-btn,
.home-main .home-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  text-decoration: none;
}

.home-main .home-cta-row .btn {
  flex: 1 1 15rem;
}

.home-main .hero-text {
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  line-height: 1.45;
}

@media (max-width: 920px) {
  .home-main .home-cta-row,
  .home-main .home-cta-row-left {
    flex-direction: column;
    align-items: stretch;
  }

  .home-main .home-cta-row .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .home-main {
    padding-top: clamp(7rem, 18vw, 11rem);
  }

  .home-main .opener h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    margin-top: 0.9rem;
  }

  .home-main .opener p {
    font-size: clamp(1rem, 4.9vw, 1.25rem);
    line-height: 1.55;
  }
}

.discover-title {
  margin-bottom: 1rem;
}

.discover-map-section {
  position: relative;
}

.discover-map {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
}

.geo-help-section[hidden] {
  display: none !important;
}

.modal-map-inner {
  display: flex;
  flex-direction: column;
  width: min(1100px, 95vw);
  height: min(92vh, 900px);
  margin: 2rem auto;
  padding: 1rem;
}

.modal-plz-form {
  margin-top: 20px;
}

.discover-modal-map {
  flex: 1;
  width: 100%;
  height: 100%;
}

#fullscreen-modal {
  top: var(--header-height, 60px);
  z-index: 9500;
}

#fullscreen-modal .modal-map-inner {
  width: 100vw;
  max-width: none;
  height: calc(100vh - var(--header-height, 60px));
  height: calc(100dvh - var(--header-height, 60px));
  max-height: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  margin-top: 15px;
}

#fullscreen-modal .modal-plz-form {
  position: absolute;
  /* top: 0.85rem; */
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  /*width: min(520px, calc(100vw - 8rem)); */
  margin: 0;
  z-index: 2600;
  /* background: rgba(255, 255, 255, 0.94); */
  padding: 0.35rem;
  border-radius: 0.6rem;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16); */
}

#fullscreen-modal .discover-modal-map {
  height: 100%;
  width: 100%;
  min-height: 0;
}

#fullscreen-modal .btn-close {
  /* top: 0.65rem; */
  right: 0.65rem;
  z-index: 2700;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16); */
  font-size: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  #fullscreen-modal .modal-plz-form {
    width: min(520px, calc(100vw - 5.2rem));
  }
}

.external-map-modal-inner {
  padding: 2rem;
  max-width: 500px;
  margin: auto;
}

.external-map-modal-title {
  margin-top: 0;
}

.external-map-modal-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 1rem;
}

.external-map-modal-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-invalid-flash {
  border-color: #c1121f !important;
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.2) !important;
  transition: box-shadow 0.15s ease;
}

.entity-updated {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(243, 125, 7, 0.12);
  color: #6a3b00;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.entity-updated-wrap {
  text-align: center;
}

.opener img {
  display: inline-block;
  max-width: 250px; /* oder eine andere sinnvolle Größe */
  height: auto;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .opener img {
    max-width: 180px;
  }

  section.markdown-content {
    padding: 1.25rem;
  }
}

.map-button-overlay {
position: absolute;
  top: 74.5px;
  right: 20px;
  display: flex;
  /*flex-direction: column; */
  gap: 0.5rem;
  z-index: 1000;
}

.map-button-overlay .btn {
  background: white;
  color: black;
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 0.9rem;
}


/* === ACCORDION === */
.accordion-toggle {
  cursor: pointer;
  padding: 1rem;
  background-color: #eee;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion-toggle:hover {
  outline: 3px solid var(--accent);
}

.accordion-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background-color: #f9f9f9;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.accordion-content-inner {
  padding: 1rem 0;
}

/* === LISTEN === */
.styled-list {
  margin: 0;
  padding: 0;
  padding-left: 0;
  margin: 1.5rem 0;
}

.styled-list li {
  margin-left: 1.5rem;
  padding: 2px 0;
  margin-bottom: 0.5rem; /* statt 1rem */
  color: var(--text-dark);
  line-height: 1;
}

.styled-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  background-color: var(--accent);
  border-radius: 50%;
}

/* === TABLE === */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.05rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
}

thead th:first-child {
  border-top-left-radius: 0.75rem;
}

thead th:last-child {
  border-top-right-radius: 0.75rem;
}

table caption {
  text-align: left;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 1rem 0.5rem 0.5rem;
}

table thead {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.2s ease-in-out;
}

.profile-bank-list-section {
  margin-top: 1.75rem;
}

.profile-bank-list-heading {
  text-align: center;
  margin-bottom: 0.4rem;
}

.profile-bank-list-intro {
  margin-top: 0;
  text-align: center;
  color: #4e4e4e;
}

.profile-bank-list-table-wrap {
  overflow-x: auto;
}

.profile-bank-table {
  margin-top: 0.6rem;
  border-spacing: 0 0.45rem;
  border-collapse: separate;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.profile-bank-table td {
  padding: 0;
  border-bottom: none;
  background: transparent;
}

.profile-bank-table tbody tr:hover {
  background: transparent;
}

.profile-bank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.profile-bank-main-btn {
  flex: 1 1 auto;
  display: inline-block;
  text-align: left;
  padding: 0.58rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #dfe3e7;
  background: #f8fafb;
  color: #2e3338;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.profile-bank-main-btn:hover,
.profile-bank-main-btn:focus {
  background: #f1f5f7;
  border-color: #cfd6dc;
  outline: none;
}

.profile-bank-more-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.48rem 0.62rem;
  border: 1px solid #d7dde3;
  border-radius: 0.5rem;
  background: #fff;
  color: #27313a;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
}

.profile-bank-more-link:hover,
.profile-bank-more-link:focus {
  border-color: #bcc6cf;
  background: #f7f9fb;
  outline: none;
}

.profile-bank-table .profile-bank-row.highlighted .profile-bank-main-btn {
  border-color: rgba(243, 125, 7, 0.45);
  background: rgba(243, 125, 7, 0.12);
}

.profile-bank-empty {
  text-align: center;
  color: #5c5c5c;
}

.profile-no-bank-hint {
  margin-top: 1.25rem;
  text-align: center;
}

.profile-no-bank-hint p {
  display: inline-block;
  margin: 0;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: rgba(243, 125, 7, 0.12);
  color: #6a3b00;
  font-weight: 600;
}

@media (max-width: 640px) {
  .profile-bank-table td {
    font-size: 0.92rem;
  }

  .profile-bank-item {
    gap: 0.42rem;
  }

  .profile-bank-main-btn {
    padding: 0.52rem 0.62rem;
  }

  .profile-bank-more-link {
    padding: 0.45rem 0.56rem;
    font-size: 0.8rem;
  }
}

/* === FORM === */
form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-top: 0.25rem;
  font-family: var(--font-sans);
}

form textarea {
  resize: vertical;
}

form input:focus,
form textarea:focus {
  outline: 2px solid var(--accent);
}

.plz-form {
  text-align: center;
  margin: 0 0 0.5rem;/* 1.2rem 0 0.5rem; */
  position: relative;
}

.plz-form .form-input {
  width: 8rem;
  text-align: center;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

@keyframes fallFade {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
}

.shake {
  animation: shake 0.4s ease-in-out;
  border-color: red;
}

.ghost-plz {
  font-size: inherit;
  color: red;
  pointer-events: none;
  animation: fallFade 1s ease-out forwards;
  position: absolute;
  white-space: nowrap;
}








.modal {
  position: fixed;
  top: var(--header-height, 60px); /* oder eigene Höhe */
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.modal.show {
  display: flex;
}

.modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

#modal-map {
  flex: 1;
}

.btn-close {
position: absolute;
  color: var(--text-dark); /* oder eine explizite Farbe wie #000 */
  top: 0.4rem;
  right: 0.25rem;
  background: none;
  border: none;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}







/* === BILD === */
.fullwidth-right-img {
  display: flex;
  justify-content: flex-end;
  margin: 3rem 0;
}

.fullwidth-right-img img {
  width: 100%;
  max-width: 1000px;
  border-radius: 0.5rem;
}

/* === TEAM === */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  flex: 1 1 calc(50% - 0.75rem);
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  font-size: 1rem;
}

.team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 640px) {
  .team-member {
    flex: 1 1 100%;
  }
}

.hero-text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 2rem;
  font-weight: 400;
  color: #333;
}




.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  /* margin-top: 1rem; */
}

.project-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  color: inherit;
  height: 100%;
}

.project-card:hover,
.project-card:focus {
  transform: translateY(0px);
  /*transform: translateY(-4px);*/
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.0);
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.logo-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.project-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.project-info {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.project-card:hover .project-info,
.project-card:focus .project-info {
  opacity: 1;
}

.project-info h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary);
  width: 100%;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.project-info p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.98rem;
  width: 100%;
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  max-width: 100%;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(243, 125, 7, 0.14);
  color: #6c3d00;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}





/* === FOOTER === */
footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
  color: #333;
}

/* === FOOTER NEU === */
.site-footer {
  background-color: #f0f0f0;
  padding: 3rem 1rem 1.5rem;
  color: #333;
  font-size: 1rem;
  border-top: 1px solid #ddd;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-block {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-block h4 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  color: var(--primary);
}

.footer-block p,
.footer-block a {
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #333;
  /* color: var(--accent); */
}

.footer-bottom {
  flex: 1 1 100%;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #000;
}


@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-block {
    align-items: center;
    text-align: center;
  }

  .footer-block h4 {
    text-align: center;
  }

  .footer-links {
    padding: 0;
  }

  .footer-links li {
    text-align: center;
  }
}






.contact-person {
  display: flex;
  flex-direction: column;   /* Stapelt Elemente untereinander */
  align-items: center;      /* Zentriert sie horizontal */
  padding: 1rem 0;
  background: transparent;
  box-shadow: none;
}


.contact-card.no-image {
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  max-width: 50%;
  width: 100%;
}

.contact-details h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-align: center;
}

.contact-person h2 {
  text-align: center;
}

.contact-details p {
  margin: 0.25rem 0;
  font-size: 1rem;
  text-align: center;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .contact-card.no-image {
    max-width: 90%;
  }

  .error-shell {
    padding: 1.25rem;
  }
}




.contact-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
  flex-wrap: wrap;
}

.contact-btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover,
.contact-btn:focus {
  background-color: #333;
  outline: 3px solid var(--accent);
  color: var(--text-light);
}








.floating-button {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-sans);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;           /* Verhindert Zeilenumbruch */
  max-width: 90vw;               /* Beschränkt Breite auf kleinen Geräten */
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-button:hover,
.floating-button:focus {
  background-color: #d96d05;
  transform: translateX(-50%) scale(1.05);
  outline: 3px solid rgba(243, 125, 7, 0.5);
}


.floating-button.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-button {
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.simple-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.simple-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.error-shell {
  padding: 2rem;
  border: 1px solid rgba(243, 125, 7, 0.14);
  background:
    radial-gradient(circle at top right, rgba(243, 125, 7, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 249, 241, 0.92) 0%, rgba(255, 255, 255, 1) 18rem),
    #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.error-code-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.error-eyebrow {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.error-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.error-message,
.error-hint {
  max-width: 42rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.error-meta {
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: rgba(17, 17, 17, 0.04);
  color: #444;
}

.error-meta code {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(255,255,255,0.75);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* === SLIDESHOW === */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 60vh; /* feste Höhe */
  max-height: 300px;
  overflow: hidden;
  border-radius: 0.5rem;
}

/* Slide-Grundstil mit schöner Überblendung */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Bild wird in Originalgröße zentriert angezeigt */
.slide img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  border-radius: 0.5rem;
}

/* Navigation */
.slideshow-prev,
.slideshow-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 0.75rem 1rem;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  z-index: 10;
}

.slideshow-prev:hover,
.slideshow-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.slideshow-prev {
  left: 10px;
}

.slideshow-next {
  right: 10px;
}

/* Indikator unten rechts */
.slideshow-indicator {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  z-index: 5;
}

.bank-gallery-section h2 {
  margin-top: 0;
}

.bank-masonry-gallery {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.bank-gallery-thumb {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bank-gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.22s ease;
}

.bank-gallery-thumb:hover img,
.bank-gallery-thumb:focus-visible img {
  transform: scale(1.02);
}

.bank-gallery-thumb:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.bank-gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  z-index: 12050;
  padding: 1.2rem;
}

.bank-gallery-modal.active {
  display: flex;
}

.bank-gallery-frame {
  margin: 0;
  max-width: min(1200px, 88vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.bank-gallery-frame img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 0.7rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.bank-gallery-frame figcaption {
  color: #fff;
  font-size: 0.95rem;
}

.bank-gallery-nav,
.bank-gallery-close {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
}

.bank-gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.6rem;
}

.bank-gallery-nav-prev {
  left: 1rem;
}

.bank-gallery-nav-next {
  right: 1rem;
}

.bank-gallery-close {
  top: 0.95rem;
  right: 0.95rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.bank-gallery-nav:hover,
.bank-gallery-nav:focus-visible,
.bank-gallery-close:hover,
.bank-gallery-close:focus-visible {
  background: rgba(255, 255, 255, 0.32);
  outline: none;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .bank-masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .bank-masonry-gallery {
    grid-template-columns: 1fr;
  }

  .bank-gallery-modal {
    padding: 0.65rem;
  }

  .bank-gallery-frame {
    max-width: 100%;
    max-height: 94vh;
  }

  .bank-gallery-frame img {
    max-height: 78vh;
  }

  .bank-gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .bank-gallery-close {
    width: 42px;
    height: 42px;
    font-size: 1.75rem;
  }
}

/* TAGS */ 
.bank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.bank-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f0f0f0;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.bank-tag:hover {
  background-color: var(--accent);
  color: white;
}

.bank-tag .emoji {
  font-size: 1.2rem;
  margin-right: 0.4rem;
}

.bank-tag {
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 0.5rem;
}

.bank-tag:hover {
  /*background-color: var(--bg-dark);*/
  background-color: #f0f0f0;
  color: var(--text-dark);
  outline: 3px solid var(--accent);
}

.bank-address-section h2 {
  margin: 0 0 0.4rem;
}

.bank-address-intro {
  margin: 0 0 0.7rem;
  color: #4e4e4e;
}

.bank-address-main {
  margin: 0;
  font-weight: 600;
  color: #1f2933;
}

.bank-address-nearby {
  margin: 0.35rem 0 0;
  color: #475563;
  font-size: 0.92rem;
}

.bank-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.bank-address-actions .btn {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

@media (max-width: 640px) {
  .bank-address-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Modal-Stil */
.tag-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.tag-modal.active {
  display: flex;
}

.tag-modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-align: center;
}

.tag-modal-content h3 {
  margin-top: 0;
  color: var(--primary);
}

.tag-modal-content p {
  font-size: 1.05rem;
}

.tag-modal-close {
  margin-top: 1rem;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* ==== PLAUDER-ROULETTE DESIGN ==== */
.roulette-box {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: #fffefa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 2px dashed var(--accent);
}

.roulette-header {
  margin-bottom: 1rem;
}

.roulette-icon {
  width: 64px;
  margin-bottom: 0.5rem;
}

.btn-shuffle {
  background-color: var(--accent);
  color: white;
  font-size: 1.1rem;
  margin: 1rem auto;
  display: inline-block;
}

.btn-shuffle:hover {
  background-color: #d96d05;
  transform: scale(1.05);
}

.frage-box {
  margin-top: 1rem;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}

.frage-box::before {
  content: "❝";
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--accent);
  opacity: 0.3;
}

.bewertung-sterne {
  margin-top: 1rem;
}

.stern-btn {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.2s ease;
}

.stern-btn:hover {
  background: var(--accent);
  color: #fff;
}

.star-rating {
  display: inline-flex;
  justify-content: center;
  gap: 0.3rem;
  font-size: 2rem;
  user-select: none;
  cursor: pointer;
}

.star-rating .star {
  color: #ccc;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating .star.hover,
.star-rating .star.active {
  color: var(--accent);
}

.star-rating .star:hover {
  transform: scale(1.2);
}

.bewertung-info {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #444;
}

.frage-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0.5rem;
}

.star-rating .star {
  color: #ccc;
  transition: color 0.3s, transform 0.2s;
}

.star-rating .star.hover,
.star-rating .star.active {
  color: var(--accent);
}

.star-rating .star:hover {
  transform: scale(1.2);
}

.bewertung-info {
  font-size: 0.9rem;
  color: #444;
  text-align: center;
  margin-top: 0.25rem;
}
