* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
        /* text-decoration: underline; */
        /* color: #007bff; */
        opacity: .8;
}

/* ======================== */
/*       HEADER             */
/* ======================== */

.Header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 15px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.Header-logo {
    font-weight: bold;
    font-size: 18px;
}

.Header-logo:hover {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
    opacity: .8;
}

.Header-laptop {
    display: none;
}

.Header-menu {
    font-size: 22px;
    cursor: pointer;
}

.Header-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;

    border-radius: 50%;
    background: #ddd;
    font-weight: bold;
}

/* ========================= */
/*      MENU FULLSCREEN      */
/* ========================= */

.Menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    max-width: 400px;
    height: 100%;

    display: flex;
    flex-direction: column;

    background: white;
    box-shadow: 5px 0 20px rgba(0,0,0,0.3);
    transition: left 0.3s ease-in-out;
    z-index: 2000;
}

.Menu.active {
    left: 0;
}

/* Header menu */
.Menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;

    padding: 0 20px;
    border-bottom: 1px solid #eee;
}

.Menu-header-title {
    font-weight: bold;
    font-size: 18px;
}

.Menu-header-closeBtn {
    font-size: 22px;
    cursor: pointer;
}

/* Contenu menu */
.Menu-content {
    padding: 20px;
    flex: 1;
}

.Menu-item {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
}

.Menu-item:hover {
    background: #ececec;
}

.Menu-separator {
    height: 40px;
}

.Menu-logout {
    color: red;
    font-weight: bold;
}

/* 768px 992 1200 */
@media (min-width: 992px) {
    .Menu, .Header-menu {
        display: none;
    }

    .Header-laptop {
        display: flex;
        gap: 30px;
    }

    .Header-laptop-item {
        display: block;
        padding: 10px ;
        font-size: 16px;
    }
    .Header-laptop-item:hover {
        text-decoration: underline;
        color: #007bff;
        opacity: .9;
    }
}