/* --- Info-Button im Header --- */
.info-btn {
  margin-left: 0.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E60011;           /* Weischer-Rot */
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: center;
}
.info-btn:hover {
  background: #c3000e;
  transform: scale(1.05);
}

/* --- Overlay neutral und wirklich zentriert --- */
.info-overlay {
  position: fixed;
  inset: 0;
  background: transparent;          /* kein Schleier über der Seite */
  display: flex;
  align-items: flex-start;          /* Inhalt startet oben */
  justify-content: center;
  padding-top: 80px;                /* Platz für Header */
  z-index: 3000;
}

#info-overlay p {
  margin: 0;            /* saubere Basis */
  line-height: 1.2;
}

.info-overlay[hidden] {
  display: none !important;
}

/* Der eigentliche Dialog */
.info-overlay__content {
  background: #fff;
  color: #111;
  padding: 2rem;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
}

.info-overlay__content h2 {
  font-size: 1.2rem;
  margin-top: 0;
  color: #E60011; /* Weischer-Rot */
}

.info-overlay__content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/*
.info-overlay__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.info-overlay__close:hover {
  color: #E60011;
}
*/