/*LEFT*/
header {
    background-color: var(--background-color-header);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#left-header {
    display: flex;
    align-items: center;
}

#left-header img {
    width: 40px;
    margin-right: 10px;
}

#left-header .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c2bfbf;
    margin-left: 0.8rem;
}

/*RIGHT*/
#right-header{
    display: flex;
}

#right-header .slideout-toggle {
    display: inline-block;
    padding: 24px;
    width: 18px;
}

#right-header .slideout-toggle span {
    background-color: #F5F5F5;
    display: block;
    height: 3px;
    width: 100%;
    margin: 3px 0;
}

#right-header .shop-url{
    color: #F5F5F5;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 2rem;
    line-height: 70px;
}

/* MENU */
#slideout-menu {
    background-color: #333;
    padding: 42px 0;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 280px;
    right: 0; /* Modifiez la position initiale pour afficher le menu */
    transition: right .4s;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

#slideout-menu.is-hidden {
    right: -280px; /* Cache le menu */
}

.slideout-menu ul {
    list-style: none;
    margin: 0;
    padding-top: 50px;
}

.slideout-menu ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.slideout-menu ul li a {
    color: #F5F5F5;
    display: block;
    font-size: 1.4em;
    padding: 8px 24px;
    text-decoration: none;
}

.slideout-menu ul li a:hover {
    background: #02523e;
}

.slideout-menu a.slideout-close {
    color: #F5F5F5;
    display: block;
    font-size: 2em;
    padding: 24px 42px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
}

.slideout-menu a.slideout-close:hover {
    background: #02523e;
}

/* Sidebar User */
.sideBarUser {
    position: absolute;
    bottom: 100px; /* Adjust as needed */
    width: 100%;
    text-align: center;
}

.sideBarUser p,
.sideBarUser a {
    color: #F5F5F5;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.sideBarUser a:hover {
    color: #02523e;
}