
.menu-toggle {
  font-size: 20px;
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  color: #fff;
}

.fa-bars:before{
    color: #000 !important;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #22674b;
  color: white;
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1001;
}

.sidebar.show {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 12px 20px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 16px;
}

.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

.overlay.show {
  display: block;
}
