.custom-sidebar {
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: start;
}

/* Position à gauche */
.custom-sidebar.left {
    left: 0;
    transform: translateX(-100%);
}

/* Position à droite */
.custom-sidebar.right {
    right: 0;
    transform: translateX(100%);
}

/* Applique les styles des liens */
.custom-sidebar ul {
    padding: 0;
    margin: 20% 0 0 0;
    width: 100%;
}
.custom-sidebar ul li {
    margin: 10px 0;
    list-style: none;
}
.custom-sidebar a {
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 18px;
    text-align: left;
    transition: color 0.3s ease;
}
.custom-sidebar a:hover {
    opacity: 0.8;
}

#close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
