html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 16px;
    font-family: sans-serif;
    font-size: 18px;
    background: #f4f4f4;
    color: #202020;
}

.hilfe-navigation {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    background: #f4f4f4;
}

.hilfe-navigation a,
.hilfe-navigation button {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid #767676;
    border-radius: 4px;
    color: inherit;
    background: white;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

.hilfe-abschnitt {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid #c7c7c7;
    border-radius: 6px;
    background: white;
}

.hilfe-abschnitt h2 {
    margin-top: 0;
}

.status-beispiele {
    display: grid;
    gap: 10px;
}

.status-beispiel {
    display: grid;
    grid-template-columns: 48px minmax(90px, auto) 1fr;
    gap: 12px;
    align-items: center;
}

.status-muster {
    display: inline-grid;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    place-items: center;
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 600px) {
    body {
        margin: 8px;
    }

    .status-beispiel {
        grid-template-columns: 48px 1fr;
    }

    .status-beispiel span:last-child {
        grid-column: 1 / -1;
    }
}
