#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.menu-container {
    position: relative;
    align-items: stretch;
}

.menu-container2 {
    margin-left:30px;
}


#menu-toggle {
    caret-color: transparent; /* Usuwa migający kursor */
}


#menu-search {
    width: 100%;
    height: 30px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    position: relative;
    z-index: 1;
}

#cssmenu {
    min-width: 400px;
    max-width: 450px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    /*transition: max-width 0.3s ease;*/
    overflow: hidden;
}


#cssmenu.collapsed {
    min-width: 0;
    max-width: 0;
    overflow: hidden;
    padding: 0;
}

#menu-toggle {
    position: fixed; 
    left:0px;
    top: 0;
    bottom: 0;
    width: 20px;
    background-color: #fff;
	height:100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;  
	transform: translateY(-50%);
	top: 50%;
}

#toggle-menu-bar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
}

#toggle-menu-bar img {
    width: 20px;
    height: 400px;	  
    pointer-events: none; 
}

.menu-container.collapsed #menu-toggle {
    right: -20px; 
}
.menu-container.collapsed #menu-search {
    display: none;
}

#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
	
  display: block;
}
.align-right {
  float: right;
}
#cssmenu > ul > li > a {
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
  background: #e8e8e8;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li > a:hover {
  color: #486484;
}

#cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 18px;
  display: block;
  width: 0; 
  height: 0; 
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000000;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul > li.has-sub.open > a:after,
#cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#cssmenu ul ul li a {
  padding: 14px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  color: #000000;
  background: #f0f0f0;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  font-weight: bold;
}

#cssmenu ul ul ul li a {
  padding-left: 45px;
}

#cssmenu ul ul ul ul li a {
  padding-left: 70px;
}

#cssmenu ul ul li a:hover {
  color: #486484;
}
#cssmenu ul ul > li.has-sub > a:after {
  top: 16px;
  right: 26px;

}
#cssmenu ul ul > li.has-sub > a:before {
  top: 20px;
}

#cssmenu > ul > li > a {
  font-weight: bold;
}

#cssmenu > ul > li > ul > li.has-sub > a {
  font-weight: bold;
}

#cssmenu > ul > li > ul > li > ul > li.has-sub > a {
  font-weight: bold;
}

#cssmenu ul ul ul li a {
  font-weight: normal;
}

#cssmenu ul li a.selected-report {
    background-color: #d8d8d8 !important;
    font-weight: bold; 
    color: #000000;
}