#Sidebar
{
    height: 100%;
    width: 300px;
    transform: translateX(-300px); 
    position: fixed;
    left: 0;
    top: 0;
    padding: 10px;
    background-color: #45b06cff;
    z-index: 5;
    border-right: 2px solid white;
    /*box-shadow: 41px 0px 27px 10px #0000002b;*/
    transition: all .5s;
    overflow-y: scroll;
}

#Sidebar ul
{
    list-style: none;
    padding: 0px;
}

#Sidebar li
{
    text-decoration: none;
    width:100%;
    background-color: #bdf6b2;
    height:50px;
    display:flex;
    align-items: center;
    position:relative;
    padding:10px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all .25s;
    cursor: pointer;
}

#Sidebar li a
{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
}

.selectedPage
{
  background-color: #93fe7e;
}

#Sidebar li:hover
{
  background-color: #93fe7e;
}

.DropdownTitle
{
    justify-content: space-between;
    cursor: pointer;
}

.DropdownContent
{
    padding-left:30px !important;
    max-height: 0px;
    overflow: hidden;
    transition: all .5s;
}

#MenuLogo
{
    height:100px;
    border: 3px dotted;
    border-image: conic-gradient(from var(--angle), rgb(255, 255, 255), rgb(182, 178, 181), rgb(133, 119, 132), rgb(69, 62, 69), rgb(47, 43, 47), rgb(255, 255, 255)) 1;
    animation: 3s rotate linear infinite;
    --angle: 0deg;
    box-shadow: 0px 5px 22px 8px #0000008c;
}

#MenuLogo:hover
{
    border-image: conic-gradient(from var(--angle), rgb(51, 255, 0), rgb(0, 168, 17), rgb(0, 136, 23), rgb(21, 83, 0), rgb(0, 81, 14), rgb(0, 255, 34)) 1;

}
@keyframes rotate {
    to {
      --angle: 360deg;
    }
  }
  
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  #LogoWrapper
  {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    padding: 10px;
  }

  #SidebarDarkModal
  {
    position:fixed;
    height: 100%;
    width:100%;
    background-color: rgba(0, 0, 0, 0.403);
    left:0;
    top:0;
    z-index: 4;
    transition:all .5s;
    opacity: 0;
    pointer-events: none;/*do note that this means people can still interact with the website while this menus open*/
}

#SidebarCloseMenu
{
  cursor: pointer; 
  font-size: 32px;
}

/* width */
#Sidebar::-webkit-scrollbar {
  width: 12px;
}

/* Track */
#Sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
 
/* Handle */
#Sidebar::-webkit-scrollbar-thumb {
  background: rgb(42, 42, 42); 
  border-radius: 5px;
}

/* Handle on hover */
#Sidebar::-webkit-scrollbar-thumb:hover {
  background: #101010; 
}