/* Privacy Booking Overlay - Frontend */
.pbo-wrap{ position: relative; }
.pbo-content{ position: relative; z-index: 1; }

.pbo-overlay{
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.pbo-overlay .pbo-logo{
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pbo-overlay .pbo-logo img{
  height: 40px; /* wird per Inline/CSS überschrieben */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.pbo-card{
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 24px;
  border: 1px solid #eee;
  text-align: left;
}
.pbo-card h3{ margin: 0 0 8px 0; font-size: 1.25rem; }
.pbo-text{ margin: 0 0 16px 0; line-height: 1.5; }
.pbo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: filter .15s ease, opacity .15s ease, transform .06s ease;
}
.pbo-btn:active{ transform: translateY(1px); }

/* Wrap mode: Inhalte erst nach Freigabe klickbar */
.pbo-wrap .pbo-content{ pointer-events: none; }
.pbo-wrap.pbo-unlocked .pbo-content{ pointer-events: auto; }

/* Attach helper */
.pbo-pos-rel{ position: relative !important; }
