#header {
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    background-color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 1;
}

#headerLogo {
    max-width: 140px;
}

#headerVersion {
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 10px;
    background-color: forestgreen;
    color: white;
    text-align: center;
}

#headerNav {
    margin-left: auto;
    display: flex;
    gap: 10px 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.headerNavItem {
    display: flex;
    align-items: center;
    gap: 2px;
}

.headerNavItem.new::after {
    content: "New";
    margin-left: 5px;
    font-weight: bold;
    font-size: 10px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: forestgreen;
    color: white;
    text-align: center;
}

@media (max-width: 800px) {
    #header {
        display: block;
    }

    #headerLogo {
        margin: 0 auto 20px;
        max-width: 120px;
    }

    #headerVersion {
        margin: 0 auto 20px;
    }
}


@media print {
    #header {
        display: none;
    }
}