html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #2f3437;
    background: #ffffff;
}

body {
    margin: 0;
}

a {
    color: #1677c8;
}

.downloads-header {
    background-color: #37474f;
    padding: 15px 0 20px;
}

.downloads-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.downloads-header__logo {
    display: block;
    width: 200px;
    max-width: 42vw;
    height: auto;
}

.downloads-header__title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.downloads-container {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.downloads-main {
    padding-top: 38px;
    padding-bottom: 48px;
}

.downloads-page-title {
    margin: 0 0 28px;
    font-size: 30px;
    line-height: 1.2;
}

.downloads-intro {
    max-width: 600px;
    margin: 0 0 32px;
    line-height: 1.45;
}

.downloads-alert {
    max-width: 600px;
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid #f0c4c4;
    background: #fff4f4;
    color: #8a2b2b;
}

.downloads-login-form {
    width: min(290px, 100%);
    margin-bottom: 22px;
}

.downloads-login-form label {
    display: block;
    margin-bottom: 8px;
}

.downloads-login-form input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 31px;
    margin-bottom: 20px;
    border: 1px solid #d7dde2;
    border-radius: 3px;
    padding: 5px 8px;
    font: inherit;
}

.downloads-muted {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.6;
}

.downloads-section {
    margin-bottom: 40px;
}

.downloads-section-title {
    margin: 0 0 24px;
    font-size: 26px;
    line-height: 1.2;
}

.downloads-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.downloads-table th,
.downloads-table td {
    padding: 11px 10px;
    border-top: 1px solid #dee2e6;
    text-align: left;
    vertical-align: middle;
}

.downloads-table th {
    font-weight: 700;
}

.downloads-table__type,
.downloads-table__version {
    width: 120px;
}

.downloads-table__edition {
    width: 150px;
}

.downloads-table__date {
    width: 190px;
}

.downloads-table__actions {
    width: 1%;
    white-space: nowrap;
    text-align: right;
}

.downloads-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.downloads-button--success {
    background: #28a745;
}

.downloads-button--secondary {
    background: #6c757d;
    font-size: 12px;
}

.downloads-empty {
    color: #6c757d;
}

.downloads-hash {
    overflow-wrap: anywhere;
}

@media (max-width: 700px) {
    .downloads-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .downloads-header__title {
        text-align: left;
    }

    .downloads-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
