.changelog-button {
    position: relative;
}

.changelog-button[data-changelog="changed"]::after {
    content: "";

    width: 100%;
    height: 100%;

    position: absolute;
    left: -12px;
    bottom: 12px;

    background-image: url("/mc/assets/changelog.png");
    background-repeat: no-repeat;
    background-position: top left;
}

.changelog-item.changelog-alert::after {
    content: "";

    width: 20px;
    height: 20px;

    position: absolute;
    left: -25px;
    top: 0;

    background-image: url("/mc/assets/changelog.png");
    background-size: contain;
}

.changelog {
    width: 100%;

    overflow-x: hidden;
    overflow-y: auto;

    border-collapse: separate;
    border-spacing: 0px 16px;

    padding: 32px;
}

.changelog thead {
    background-color: #ffffff7f;
}

.changelog th {
    font-weight: bold;
    text-align: center;
}

.changelog tbody tr {
    position: relative;

    overflow-y: hidden;
}

.changelog tbody td {
    /* vertical-align: bottom; */
}

.changelog tbody tr + tr {
    padding-top: 16px;
}

.changelog-item {
    position: relative;
}

.changelog-fresh {
    
}

.changelog-item.changelog-fresh > * {
    background-color: #ffff007f;
}

.changelog-item + .changelog-item > * {
    padding-top: 3px;

    border-top-color: #0000007f;
    border-top-width: 3px;
    border-top-style: solid;
}

.changelog-timestamp {
    position: sticky;
    top: 0;
    left: 0;

    padding-right: 16px;

    vertical-align: top;
}

.changelog-title {
    font-weight: bold;
}

.changelog-message {
    vertical-align: top;
}

.changelog-fill {
    grid-column-start: 2;
    grid-column-end: 4;
}