.top-header-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 290px;
}

.gap-filler {
    display: none;
    height: 80px;
}

.header-menu-container {
    height: 80px;
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    background: var(--surfaceNeutralDefault);
    box-shadow: 0 0 8px 0 var(--box-shadow-opaque);
    -moz-box-shadow: 0 0 8px 0 var(--box-shadow-opaque);
    -webkit-box-shadow: 0 0 8px 0 var(--box-shadow-opaque);
    width: auto;
}

.sticky {
    position: fixed;
    top: 0;
    /* biome-ignore-start lint/suspicious/noDuplicateProperties: Attempt to make this cross-browser */
    width: -webkit-fill-available;
    width: -moz-available;
    /* biome-ignore-end lint/suspicious/noDuplicateProperties: Attempt to make this cross-browser */
}

.left-menu-part {
    width: 65%;
    display: flex;
    justify-content: flex-start;
}

.right-menu-part {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}

.logo-to-the-left {
    display: flex;
    width: 20%;
    padding-top: 15px;
    float: left;
    align-items: center;
}

.header-logo-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
}

.menu-item {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--textOnLight);
    padding-top: 30px;
    text-align: center;
    height: 47px;
    float: left;
}

.menu-item:hover {
    cursor: pointer;
}

.selected-menu-item:after {
    /* add a red line under menu item, if it gets selected */
    content: "";
    height: 6px;
    background: var(--illustrationHighlight);
    position: relative;
    z-index: 1;
    top: 27px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 45px;
    display: block;
    margin-left: -12px;
    margin-right: -12px;
}

.selected-menu-item {
    /* mark the selected menu item */
    font-weight: 700;
    color: var(--surfacePrimary);
}

.timer-to-the-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    float: right;
}

.image-header-logout-time {
    display: inline-block;
    text-align: right;
    font-size: 24px;
    font-weight: 500;
    color: var(--textOnLight);
    font-variant-numeric: tabular-nums;
}
