/* Custom Checkout Popup Styles */
.custom-modal-overlay {
  display: none; /* Standardmäßig versteckt */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background: rgba(240, 106, 35, 1);
  width: 90%;
  max-width: 500px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
  box-sizing: border-box;
  color:#fff;
}

.custom-modal-content h3 {
  margin-top: 0;
  color: #fff; /* Farbe anpassbar (Rot-Ton als Alert) */
  font-size: 1.5rem;
}

.custom-modal-info p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color:#fff;
}

.custom-modal-checkbox {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: bold;
  color:#fff;
}

.custom-modal-checkbox input {
  transform: scale(1.5);
  margin-right: 10px;
  color:#fff;
}

#custom-popup-ok {
  width: 100%;
  padding: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color:#fff;
}

#custom-popup-ok:hover {
border:#333 2px solid;
}

.custom-modal-smalltext {
  font-size: 0.8rem;
  color: #666;
  text-align: justify;
  margin: 0;
  line-height: 1.4;
  color:#fff;
}