/* Fokusfarbe für Icons bei Aktivität */
.input-wrapper input:focus ~ .icon,
.input-wrapper textarea:focus ~ .icon {
  color: #007BFF;
}

/* Modal-Hintergrund leicht getönt */
.modal {
  background: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Absende-Button mit animierter Spinner-Icon */
button[type="submit"].sending {
  pointer-events: none;
  opacity: 0.7;
}
button[type="submit"].sending::after {
  content: '110';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Zeichen-Zähler unter Textarea */
.char-counter {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: -10px;
  margin-bottom: 10px;
}

#kontaktModal, .modal, .modal-content {
    background-image: none !important;
    background-color: white !important;
  }

#kontaktModal .modal-content, .modal-content {
    padding-top: 0px !important;
  }