.chemiefaser-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.karte-titel {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0;
  color: #000;
  background: transparent;
}

.staedte-liste {
  position: absolute;
  top: 6rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 1rem;
  max-width: 200px;
}

.stadt-name {
  cursor: pointer;
  font-size: 1.8rem;
  color: #000;
  transition: all 0.3s ease;
}

.stadt-name:hover,
.stadt-name.active {
  color: var(--color-blue-text);
  text-decoration: underline;
  text-decoration-color: var(--color-blue-text);
}

.karte-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  overflow: hidden;
}

.karte-container svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
}

svg g rect {
  fill: #000;
  stroke: none;
  transition: all 0.3s ease;
}

svg g:hover rect {
  fill: var(--color-blue-text) !important;
  /* r: 8 !important; */
}

.stadt-tooltip {
  position: fixed;
  background: white;
  border: 1px solid #000;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  max-width: 350px;
  pointer-events: none;
}

.stadt-tooltip h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: normal;
}

.stadt-tooltip p {
  margin: 0;
  font-size: 0.9rem;
}

.stadt-tooltip p.quelle {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: #999;
}

.chemiefasertitel {
 font-weight: normal;
}
.chemiefasertext {
  padding-bottom: 6rem;
}