html {
    scroll-behavior: smooth;
}

.main {
    flex-direction: row;
}

.downloads {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.downloads__section {
    display: flex;
    flex-direction: row;
}

.download-table-limit-width {
    max-width: 20.2rem;
}

.downloads__thumbnail {
    width: 100%;
    align-self: center;
    margin-top: 0em;
    margin-bottom: 0em;
}

.downloads__links {
    display: flex;
    column-gap: 1em;
    row-gap: 1em;
}

.downloads__link {
    flex: 1;
}

.downloads__other {
    margin-top: 1em;
    display: flex;
    place-content: center;
    column-gap: 1em;
    flex-wrap: wrap;
}

.download-table-annotations-limit-width {
    max-width: 20.2rem;
}

.smooth-img {
    image-rendering: smooth;
}

.link-disabled {
    user-select: none;
    filter: grayscale(90%);
}

.download-version-description {
    margin-top: 0em;
}

.button-size-limit {
    width: 10%;
}

@media (max-width: 50em) {
    .downloads__section {
        flex-direction: column;
    }

    .download-table-annotations-limit-width {
        max-width: none;
    }

    .download-table-limit-width {
        max-width: none;
    }
}