/**
 * @file
 * Styles for fields.
 */

/* Field-Label soll in fetter Schriftart erscheinen */
.field__label {
  font-weight: bold;
}

/* Wir wollen einen Rahmen um das Feld "Body", damit sich der Bereich, in welchen wir schreiben sollen, besser abhebt */
.region-content .field--name-body {
  border: solid;
  border-color: #d6d6d6;
  border-width: 1px;
  padding: 10px;
  font-family: arial, verdana, courier-new;
  text-align: justify;
}

/* Nummerische Aufzählungen sollen gleich dem Standard-CK-Editor sein */
.field--name-body ol {
  list-style-type: decimal;
}
.field--name-body ol ol {
  list-style-type: lower-latin;
}
.field--name-body ol ol ol {
  list-style-type: lower-roman;
}
.field--name-body ol ol ol ol {
  list-style-type: upper-latin;
}
.field--name-body ol ol ol ol ol {
  list-style-type: upper-roman;
}

/* Tabellen im Feld Body sollen die Schriftart Arial haben, die Breite beachten und mittig sein */
.field--name-body  table {
  font-family: arial, verdana, courier-new;
  border-collapse: separate;
  margin-left: auto;
  margin-right: auto;
}

/* Tabellen im Feld Body sollen bei <p> kein margin haben */
.field--name-body table p {
  margin: auto;
}

/* Keine Hintergründe beim Hovern in Tabellen innerhalb des Field:Body */
.field--name-body table tbody tr:hover:not(.backgr01) {
  background: transparent;
}
