﻿
/* Vorschau Prüfung*/

.vorschau-container {
    font-family: 'Arial', sans-serif;
    margin: 0px 0px 0px -10px;
    padding: 0;
    background: white;
    width: 190mm;
    min-height: 297mm;
    margin: 10mm auto;
    border: 1px #D3D3D3 solid;
    border-radius: 5px;
    background: white;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
}

.vorschau-signature {
    border-top: 1px solid black;
    width: 400px;
    text-align: left;
    margin-top: 50px;
    padding-top: 15px;
}

.vorschau-deckblatt {
    width: 185mm; /* A4-Breite */
    min-height: 297mm; /* Mindesthöhe eines A4-Papiers */
    max-height: 297mm; /* Maximale Höhe, um zu verhindern, dass Inhalte auf die nächste Seite überlaufen */
    overflow: hidden; /* Versteckt Überlauf, falls der Inhalt größer als A4 ist */
    page-break-inside: avoid; /* Vermeidet, dass Bereiche über Seiten hinweg getrennt werden */
    page-break-after: auto; /* Ermöglicht den Seitenumbruch nach Bedarf */
    padding-top:20px;
}

.adressfeld {
    padding-left: 50px;
}
/* CSS für die Anzeige auf dem Bildschirm und den Druck */
.vorschau-bereich {
    width: 185mm; /* A4-Breite */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Breite enthalten sind */
    /*padding-right: 10mm;*/ /* Fügt Innenabstand hinzu */
    margin: 0; /* Entfernt den Außenabstand */
    /*border: 1px solid black;*/ /* Fügt einen Rahmen für die Sichtbarkeit hinzu */
    /* Entfernen Sie page-break-after: always, da wir das im JavaScript steuern */
}

.pruefung-loesung-eingabe {
    width: 35px;
    display: initial;
    margin-left: 5px;
}


html, body {
    font-family: 'Arial', sans-serif;
    font-size: 1.0rem;
    margin: 0;
    padding: 0;
    background-color: white;
}


/*Hinweis*/

.container {
    width: 80%;
    margin: auto;
}

.correction-example {
    text-align: center;
    margin-top: 20px;
}

.form-check-input {
    position: center;
    width: 22px;
    height: 22px;
    margin: 2px 0px 0px 10px;
    border: 1px solid #dee2e6;
}

    .form-check-input:checked {
        background-color: var(--hell-lila);
        border-color: #dee2e6;
    }

input[type='checkbox']:checked:after {
    border: 1px solid #dee2e6;
    width: 20px;
    height: 20px;
    background-color: var(--hell-lila);
    content: '';
    display: inline-block;
    visibility: visible;
}