body {
    background-color: white !important;
    font-family: DVAG-Type;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main-container {
    padding: 48px 0;
    flex: 1;
    height: 100%;
}

a {
    text-decoration: none;
}


.header :nth-child(2) {
    position: relative;
    top: 25px;
    left: 15px;
}

.footer-contact-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
}

.footer-contact-container > *:first-child {
    flex: 0 0 180px;
}

.footer-contact-container > *:last-child {
    flex: 0 0 350px;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.space-between > *:nth-child(2) {
    margin-left: 15px;
}

.version-description {
    min-height: 80px;
}

.library-header {
    display: block;
    margin-bottom: 8px;
}

.library-description {
    display: block;
    margin-bottom: 24px;
}

.version-link {
    display: inline-block;
    height: max-content;
    transition: background-color 150ms ease-in-out;
    cursor: pointer;
}

.version-link:focus-visible {
    outline: 2px solid #004763;
    outline-offset: 2px;
}

.version-link:hover {
    background-color: #00587c1a;
    border-color: #00587c;
    --dx-text-color: #00587c;
    --dx-icon-color: #00587c;
}

.version-link:active {
    background-color: #00587c33;
    border-color: #004763;
    --dx-text-color: #004763;
    --dx-icon-color: #004763;
}

.versions-combobox {
    max-width: 320px;
    margin-bottom: 24px;
}