
/*--------------------------------------------------------------
# Anmeldung Essensbestellung
--------------------------------------------------------------*/

/* <!--Für "Tabelle"-->     */

    .form-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      border-color: #DEE2E6;
    }

    .table {
      width: 100%;
    }

     .form-control:focus, .form-select:focus {
    border-color: #00937a !important; /* Grün */
    box-shadow: none !important; /* Kein blauer Shadow */
    outline: none !important;     /* Kein zusätzlicher Rand */
  }


/*<!--Für "Links wie Datenschutz, Grafik neu laden, Bitte auswählen, placeholder, Ihre Nachricht"-->   */


  /* Standard-Style (für Desktop) */
.form-label a,
.mt-2 a {
  color: #555;
  text-decoration: underline;
  text-decoration-style: dotted; /* Desktop: gepunktet */
  transition: all 0.2s ease-in-out;
}

/* Hover-Effekt auf Desktop */
.form-label a:hover,
.mt-2 a:hover {
  color: #00937a;
}

/* Style speziell für Smartphones */
@media (max-width: 768px) {
  .form-label a,
  .mt-2 a {
    text-decoration-style: dotted; /* Mobile: normale Unterstreichung */
  }
}

  .form-label {
    font-size: 16px; /* Schriftgröße */
    color: #444444;   /* Schriftfarbe (z.B. Blau) */
  }

  .form-select {
    font-size: 14px;
    color: #595c5f; /* Textfarbe innerhalb des Dropdowns */
  }

  input::placeholder {
    color: #595c5f;       /* Farbe des Platzhalters */
    font-size: 14px;      /* Schriftgröße des Platzhalters */
   /* font-style: italic; Optional: kursiv */
  }

  .custom-textarea::placeholder {
    color: #595c5f;
    font-size: 14px;
  }

  /* für einzelne hervorgehobene Wörter */
  .hervorgehoben {
    font-family: "Sofia Pro ExtraLight", sans-serif;
    font-optical-sizing: none;
    font-weight: 400;
    font-style: italic;
    color: #000;
    font-size: 1.03rem;
    letter-spacing: 0.03em;     /* Buchstabenabstand */
    line-height: 1.5;           /* Zeilenhöhe */
    /*text-transform: uppercase;   Großbuchstaben */
    /*text-decoration: underline;  Unterstreichen */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* feiner Schatten */
    }