aside {
    width: 300px;
    height: 100%;
    overflow: auto;
    background-color: #130d13;
    padding: 10px;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.aside-left {
    overflow: scroll;
}

.aside-right {
    display: none;
}

.btn-home {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 40px;
    border-bottom: 1px solid #fce798;
}
.btn-home div{
   padding: 20px;
   width: 200px;
   text-align: center;
   color: #d79b9d;
}
.btn-home div:hover{
   color: rgb(89, 147, 167);
}

.img-chloe {
    width: 50%;
    height: auto;
}

.logo-sunflower {
    width: 30px;
    margin-right: 5px;
}
.arrow-list {
    width: 10px;
    margin-left: 5px;
    margin-right: 2px;
}
.logo-sunflower.colored {
    display: none;
}
.accordion-item:hover  .logo-sunflower.gray {
    display: none;
}
.accordion-item:hover  .logo-sunflower.colored {
    display: block;
}
  
.accordion-button.no-arrow::after {
    background-image: unset !important;
}

.accordion-line a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.accordion-line.all-creation {
    padding: 5px;
    color: rgb(0, 0, 0);
    background-color: white;
    font-weight: 700;
    text-decoration: none;

    background-image: url(../img/background/frame-flower-1.png);
    background-size: 100px 100px;
    background-position: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-position-y: 0px;
}

.accordion-line.category-line {
    padding: 5px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-decoration: none;
    
    background-image: url(../img/background/frame-flower-1.png);
    background-color: white;
    background-position: right;
    background-position-y: center;
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position-y: -39px;
}

.accordion-line.subcategory-line {
    padding: 5px;
    color: black;
    font-weight: 700;
    text-decoration: none;

    background-image: url(../img/background/frame-flower-1.png);
    background-color: white;
    background-position: right;
    background-position-y: center;
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position-y: -68px;
}

.action-animation-navbar {
    display: none;
    background-color: black;
    cursor: pointer;
}

/* **************************************
*       Media Query pour TABLETTE
*************************************** */
@media (max-width: 768px) {
    .action-animation-navbar {
        display: unset;
    }
   /* Styles de la barre des tâches */
    #sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
        background-color: #000000;
        color: white;
        overflow: auto;
        transform: translateX(-100%); /* Cache la barre par défaut */
        transition: transform 0.3s ease; /* Animation fluide */
        z-index: 999;
    }

    /* Classe pour afficher la barre */
    #sidebar.active {
        transform: translateX(0); /* Position visible */
    }
}

/* **************************************
*       Media Query pour MOBILE
*************************************** */
@media (max-width: 480px) {
    .action-animation-navbar {
        display: unset;
    }
    /* Styles de la barre des tâches */
    #sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
        background-color: #000000;
        color: white;
        overflow: auto;
        transform: translateX(-100%); /* Cache la barre par défaut */
        transition: transform 0.3s ease; /* Animation fluide */
        z-index: 999;
    }

    /* Classe pour afficher la barre */
    #sidebar.active {
        transform: translateX(0); /* Position visible */
    }
}

.connected-with {
    font-size: 16px;
}

.user-connected {
    color: #0487ff;
}

.title-menu-navbar-left {
    color: #ab8943;
    font-size: 20px;
}