.header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.logo {
    height: 90px;
}

.date {
    color: var(--secondary-color);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    position: relative;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: right;
}

.nav-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    gap: 0.5rem;
    width: 64px;
}

.nav-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.nav-menu a span {
    text-align: center;
}

#back {
    position: absolute;
/*    left: 0;*/
    left: -90px;
}

.nav-backdrop.active {
    display: block;
}

.help {
    background-image: url(../images/icons/info.png);
}
.floor-plan {
    background-image: url(../images/icons/map.png);
}
.space-status {
    background-image: url(../images/icons/magnifier.png);
}
.announcements {
    background-image: url(../images/icons/annoncement.png);
}
.my-records {
    background-image: url(../images/icons/record.png);
}
.logout {
    background-image: url(../images/icons/logout.png);
}
.language {
    background-image: url(../images/icons/globeEn.png);
}
.manhead {
    background-image: url(../images/icons/manhead.png);
}
.back {
    background-image: url(../images/icons/left.png);
}