html,
body {
    font-family: "Noto Sans", system-ui, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: clip;
}

body .content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.navigation {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

.application {
    flex-grow: 1;
    overflow-y: auto;
}
.application > div {
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.root-error-container {
    align-items: center;
    background: white;
    grid-template-columns: 1fr;
    height: 100%;
    justify-items: center;
    width: 100%;
    z-index: 1000000;
}

.root-error-container > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}

.root-error-container h1 {
    font-size: 32px;
    margin-bottom: 0.5em;
}

.root-error-container button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #337f8d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 16px;
    transition: background-color 0.3s ease;
}

.root-error-container button:hover {
    background-color: #296671;
}

@media print {
    html {
        /* min-height: 100%; */
        height: auto;
        width: auto;
        overflow: visible;
    }

    body .content {
        height: auto;
        overflow-y: visible;
    }

    .application {
        height: auto;
    }
    .application > div {
        height: auto;
    }

    .tsqd-transitions-container .tsqd-open-btn-container {
        display: none;
    }
    
    @page {
        size: letter;
        margin: 0.5in;
    }
}
