body,table
{
font-family:verdana,arial;
font-size:12px;
color:#000000;
}

.klein
{
font-family:verdana,arial;
font-size:10px;
color:#000000;
Text-Decoration: none;
}

a
{
font-family:verdana,arial;
font-size:12px;
color:#000000;
text-decoration: underline;
}


a:hover
{
Color: #000000;
Text-Decoration: none;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 150px;
  box-sizing: border-box;
}

/* Überlagerung für den Ladebildschirm */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(153, 0, 0, 0.5); /* Fläche mit 50% Deckkraft */
    display: none; /* Initial verborgen */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Drehendes Bild */
#heart {
    width: 200px; /* Bildbreite */
    height: auto;
    object-fit: cover;
    animation: spin 2s linear infinite; /* Drehende Animation */
}

/* Animation für die Drehung */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================================
   Mini-Bootstrap für Custom Alert / Confirm (nur das Nötigste)
   Passt sich an deine :root-Farben an
   ========================================================= */

/* ---------- Modal-Grundgerüst ---------- */
.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;               /* über allem, auch über Kamera-Modal */
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: opacity .15s linear;
}
.modal-custom.show {
  display: flex !important;
  opacity: 1;
}

/* ---------- Zentrierung ---------- */
.modal-custom-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
  max-width: 420px;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

/* ---------- Inhalts-Box ---------- */
.modal-custom-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  overflow: hidden;
}

/* ---------- Body (Text) ---------- */
.modal-custom-body {
  flex: 1 1 auto;
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark, #2d3748);
  white-space: pre-wrap;          /* Zeilenumbrüche erhalten */
}

/* ---------- Footer (Buttons) ---------- */
.modal-custom-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
  gap: .65rem;
}

/* ---------- Buttons (übernehme deine Farben) ---------- */
.btn-modal {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: .45rem 1.1rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn-modal:disabled {
  opacity: .55;
  pointer-events: none;
}

/* Primär = deine Akzentfarbe */
.btn-modal-primary {
  color: #fff;
  background-color: var(--primary, #ff2d55);
  border-color: var(--primary, #ff2d55);
}
.btn-modal-primary:hover,
.btn-modal-primary:focus {
  background-color: var(--secondary, #5856d6);
  border-color: var(--secondary, #5856d6);
}

/* Sekundär = abgesetzt */
.btn-modal-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-modal-secondary:hover,
.btn-modal-secondary:focus {
  background-color: #5a6268;
  border-color: #545b62;
}

/* ---------- Sanftes Einblenden ---------- */
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-custom.show .modal-custom-content {
  animation: modalFadeIn .18s ease-out;
}

