/* Container für das Lektionsformular */
.lession-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 8px;
  max-width: 800px;       /* breiter, passt sich an Bildschirm an */
  margin: 2em auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Titel */
.lession-form legend h2 {
  font-size: 1.5rem;
  margin-bottom: 1em;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

/* Labels */
.lession-form .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4em;
  color: #444;
}

/* Eingabefelder */
.lession-form input[type="text"],
.lession-form textarea {
  width: 100%;              /* volle Breite */
  padding: 0.8em;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 1em;
}

/* Textarea größer machen */
.lession-form textarea {
  min-height: 180px;        /* mehr Platz für Beschreibung */
  resize: vertical;         /* Benutzer kann Höhe anpassen */
}

/* Checkbox */
.lession-form input[type="checkbox"] {
  transform: scale(1.3);    /* größer */
  margin-right: 0.5em;
  accent-color: #0078d7;    /* moderne Browser: blaue Checkbox */
}

/* Submit-Button */
.lession-form input[type="submit"] {
  background: #3366cc;
  color: #fff;
  border: none;
  padding: 0.8em 1.6em;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lession-form input[type="submit"]:hover {
  background: #254a99;
}
