.sidebar {
  flex: 0 1 auto; 
  width: 200px;
  height: calc(100vh - 20px);
  overflow-y: auto;
  background-color: #222831E6;
  padding: 20px;
  box-sizing: border-box;
  margin: 10px;
  position: fixed;
  border-radius: 20px;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
}

@media (max-width: 1000px) {
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 20px;
        border-radius: 0;
        backdrop-filter: blur(8px);
        z-index: 1200;
        overflow-y: auto;
    }

    .sidebar.show {
        display: block;
        animation: slideIn 0.3s ease forwards;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(10%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.nav-section {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: #eeeeee80;
  border-bottom-width: 2px;
  border-bottom: solid #eeeeee80 1px;

}

.nav-header {
  font-weight: 300;
  font-size: 10px;
  margin-bottom: 10px;
  color: #eeeeee80;
}

.nav-link,
.nav-sublink {
  display: flex;
  align-items: center;
  padding: 5px 10px ;
  color: #eeeeee;
  text-decoration: none;
  font-size: 12px;
  border-left: solid transparent 5px;
}

.nav-sublink {
   color: #eeeeee80;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.nav-dropdown .nav-submenu {
  color: #eeeeee80;
  margin-left: 28px;
  display: none;
}

.nav-toggle {
  cursor: pointer;
}

.nav-link.active,
.nav-sublink.active {
  background-color: #eeeeee40;
  border-radius: 0px 5px 5px 0px ;
  font-weight: 500;
  border-left: solid #4BB543 5px;
}

.nav-link:hover,
.nav-sublink:hover {
  background-color: #eeeeee40;
  border-radius: 0px 5px 5px 0px ;
  border-left: solid #eeeeee 5px;
  text-decoration: none;
}

.fz_logo {
  max-height: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.mobileFooterMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #222831E6;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 900;
    padding: 0 10px;
    border-top: none;
}

.menuItem {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menuItem img {
    height: 24px;
    width: 24px;
    margin-bottom: 4px;
}

.menuLabel {
    font-size: 11px;
    color: #eeeeee;
    text-align: center;
}


/* Show only on mobile */
@media (max-width: 1000px) {
    .mobileFooterMenu {
        display: flex;
    }
}
