h4 {
    color: rgb(100, 100, 100);
    font-weight: normal;
}

#log {
    & > div {
        margin-bottom: 2rem;
    }
}

.change {
    padding: 1rem;
    background-color: white;
    border: solid 1px rgb(220, 220, 220);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;

    &:first-child {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    &:last-child {
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-bottom: solid 1px rgb(220, 220, 220);
    }


    a {
        &:hover {
            text-decoration: underline;
            color: black;
        }
    }

    .author {
        font-size: smaller;
        color: #59636e;
        min-width: max-content;
    }
}


#diff {
    background-color: white;
}

li {
    list-style-type: none;
    padding: 2px 5px;
    border: solid 1px rgb(245, 245, 245);

    &.selected {
        font-weight: bold;


    }

    &:hover {
        background-color: rgb(250, 250, 250);
    }
}


#summary {
    background-color: white;
    margin-bottom:2rem;
    ul {
        padding: 0;
    }
}

#content {
    white-space: pre-wrap;
    background-color: white;
    padding: 1rem;

    --content-h1: bold 1.4rem/1.2em var(--h-ff);
    --content-h2: bold 1.3rem/1.2em var(--h-ff);
    --content-h3: bold 1.2rem/1.2em var(--h-ff);
    --content-h4: bold 1.1rem/1.2em var(--h-ff);

    h1 {
        font: var(--content-h1);
    }

    h2 {
        font: var(--content-h2);
    }

    h3 {
        font: var(--content-h3);
    }

    h4 {
        font: var(--content-h4);
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0px;
    }
}