/* Vollflächiger, halbtransparenter Hintergrund */
.agb-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000; /* über restlichem Inhalt */
}

/* Box in der Mitte */
.agb-modal-box {
  background: #ffffff;
  color: #222;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

.agb-modal-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.agb-modal-content p {
  margin-bottom: 0.6rem;
}

.agb-modal-box button {
  margin-top: 12px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #954D15;
  color: #fff;
  cursor: pointer;
}
