/* Welcome-Modal.
   Hintergrund der Content-Card wird per Inline-Style im Partial gesetzt
   (spiegelt die Send-Page: solid / gradient / weiss). CSS liefert nur
   das Layout + einen neutralen weissen Default, falls kein Inline-Style
   kommt. Text- und Button-Farben setzt welcome-modal.js per colorBright
   anhand der data-voxr-bg-Referenz - daher hier KEINE feste color/
   background-color auf h3/p/button, sonst kann JS nicht ueberschreiben. */
.voxr-welcome-modal {
  position: fixed;
  z-index: 1060;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.55);
  display: none;
  pointer-events: none;
}
.voxr-welcome-modal.active {
  overflow: auto;
  pointer-events: auto;
}
.voxr-welcome-modal-content {
  background-color: #ffffff; /* Default, wird per Inline-Style ueberschrieben */
  margin: 15% auto;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  font-size: 1.2em;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.voxr-welcome-modal-content h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 600;
}
.voxr-welcome-modal-content p {
  margin-bottom: 22px;
  line-height: 1.45;
}
#voxr-welcome-ok-btn {
  margin: 8px 5px 0;
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  min-width: 140px;
}
#voxr-welcome-ok-btn:focus {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
