header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    background-color: var(--verde-medio);
    overflow: hidden;
    z-index: 4;
}

.header-icon {
    font-size: 2rem;
}

.menu-icon {
    font-size: 2rem;
    color: var(--bianco);
}

.header-logo-container {
    align-items: center;
    display: flex;
    padding-left: 1em;
}

.logo {
    height: 3em;
}

.header-icon-container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-size: 0.65rem;
}

.header-icon-container > * {
    transition: color 0.2s ease-in-out;
}

.header-icon-container:hover > * {
    color: var(--bs-dark);
    cursor: pointer;
}

.header-icon-container span {
    display: block;
}

nav {
    display: none;
    position: fixed;
    right: 0;
    max-height: 90%;
    z-index: 10;
    background-color: var(--background);
    padding: 1rem 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 0 6px rgba(0, 0, 0, 0.23);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

nav ul a:hover {
    color: var(--bs-dark);
}

nav ul li {
    padding: 1vh 2rem 0.5vh;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-user {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;

}

.menu-user a {
    text-decoration: none;
    color: var(--bianco);
    background-color: var(--verde-medio);
    border-color: var(--verde-medio);
    transition: all 0.2s ease-in-out;
    width: 13rem;
}

.menu-user a:hover {
    color: var(--verde-scuro);
    background-color: var(--verde-scuro-10);
}

.menu-footer-docs {
    padding-top: 1.3rem;
    text-align: center;
    text-transform: lowercase;
}

.menu-footer-docs a {
    text-decoration: none;
    color: var(--verde-medio);
}

.menu-footer {
    position: absolute;
    bottom: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.menu-content {
    min-width: min(76vw, var(--max-width));
    color: var(--verde-scuro);
    min-width: max-content;
}

#nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: 10px 10px 0 0;
}

hr.separator {
    margin: 0.5rem 1.5rem;
    height:3px;
    border-radius: 10px;
}
