body {
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif; /* Einfache und klare Schriftart */
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 10px;
}

.description {
    white-space: pre-line; /* This CSS property preserves whitespace and line breaks */
    line-height: 1.6; /* Vergrößerter Zeilenabstand in der Schrittbeschreibung */
}

.steps {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    margin: 0 10px;
}

.step {
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8em; /* Textgröße weiter verkleinern */
}

.current-step {
    font-weight: bold;
    background-color: #d3d3d3; /* Dezenter grauer Hintergrund für den aktuellen Schritt */
}

.step-title-container {
    background-color: lightgray; /* Hintergrundfarbe für die Titelzeile */
    padding: 4px; /* Padding auf 4px in alle Richtungen gesetzt */
    margin: 5px 0; /* Abstand zwischen Text und grauer Hinterlegung */
    line-height: 1.2em; /* Weitere Verkleinerung der Höhe */
}

.step-title {
    font-weight: bold;
}

button {
    font-size: 1.2em; /* Größere Buttons */
    padding: 10px 20px; /* Größere Buttons */
    margin: 5px; /* Abstand zwischen Buttons */
}

.startzeitpunkt {
    font-size: 0.8em; /* Verkleinerte Schriftgröße */
    color: gray; /* Graue Schriftfarbe */
}

.divider {
    border-top: 1px solid lightgray;
    margin-top: 20px;
    padding-top: 10px;
}

h1 {
    color: #0056b3; /* Blau aus der Webseite "klein-aber-fein.info" */
}

/* Neuer Rahmen für Schrittinformationen */
.step-frame {
    border: 2px solid #cccccc;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}
