/* options_main (page paramètre) */
div .sidebar {
    position: relative;
}

.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background: #1A303E;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: all 0.4s ease;
}

.sidebar-toggle {
    background: #1A303E;
    color: white;
    border: none;
    width: 40px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.sidebar-toggle:hover {
    background-color: #ffffff2d;
    width: 40px;
    color: #ffffff;
    border-radius: 4px;
}

.sidebar.open {
    width: 400px;
}

.icon {
    font-size: 20px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0 20px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
}

.sidebar-links h4 {
    color: #fff;
    font-weight: 500;
    margin: 10px 0;
    position: relative;
}

.sidebar-links h4 span  {
    opacity: 0;
}
  
.sidebar:hover .sidebar-links h4 span  {
    opacity: 1;
}


.sidebar-links {
    margin-top: 20px;
}

.nav-link {
    border-radius: 5px;
}

.nav-link i,  .nav-link, .section_title{
    color: #ffffff;
}

.nav-link:hover, .nav-link:hover i {
    background-color: #ffffff2d;
    color: #ffffff;
    border-radius: 4px;
}

.section_title h4 {
    font-weight: 500px;
    margin: 10px 0;
}

.fa .fa-bars {
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
}