/* VisForms: Eingabefelder dauerhaft weiß */
body.com-visforms #visformcontainer .form-control,
body.com-visforms #visformcontainer input[type="text"],
body.com-visforms #visformcontainer input[type="email"],
body.com-visforms #visformcontainer input[type="tel"],
body.com-visforms #visformcontainer textarea {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ccc;          /* optional, feiner Rand */
}

/* Placeholder gut lesbar */
body.com-visforms #visformcontainer .form-control::placeholder {
  color: #757575;
}

/* Fokusstil (optional) */
body.com-visforms #visformcontainer .form-control:focus,
body.com-visforms #visformcontainer textarea:focus {
  background-color: #fff !important;
  border-color: #0078d7;
  outline: none;
  box-shadow: none;                 /* Template-Glow entfernen, falls vorhanden */
}

/* Ändert den Hintergrund des TinyMCE Editors */
.tox-tinymce {
  background-color: #f7f7f7 !important; /* hellgrau */
  border: 1px solid #ccc !important;
  border-radius: 4px;
}

/* Hintergrund innerhalb des Editors (iframe-Inhalt) */
.tox-edit-area iframe {
  background-color: #f7f7f7 !important;
}