header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    background: #2E273D;
    padding: 0.5rem;
    z-index: 999;
    align-items: center;
    border-radius: 4px;
}


.menu-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

header .logo-container {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    border-right: 2px solid #5C5669;
    padding-right: 1rem;

}

header .logo-container img {
    width: 4rem;
}

header .logo-container .text-container {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

header .logo-container .text-container h2 {
    font-size: 1.1em;
    color: white;
    font-weight: 400;
}

header .logo-container .text-container h1 {
    font-size: 1.1em;
    color: white;
    font-weight: 700;
}

header nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    padding-left: 1.5rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    transition: 0.4s;

}

header nav a:hover {
    color: rgb(16, 102, 189);
    cursor: pointer;
}

.current-session {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    gap: 1.5rem;
}

.current-session a {
    color: white;
    text-decoration: none;
}

.current-session h3 {
    color: white;
    font-weight: 700;
    font-size: 1.2em;
}

.current-session .icon-btn {
    font-size: 1.5em;
}