.sidebar {
  position: fixed;
  top: 0;
  right: -320px; /* Hidden initially */
  width: 320px;
  height: 100vh;
  background: #ffffff; /* Light background similar to FlexStart */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  color: #012970; /* FlexStart text color */
  padding: 30px 20px;
  transition: right 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
  font-family: "Open Sans", sans-serif;
}

.sidebar.active {
  right: 0;
}



.sidebar a:hover {
  color: #4154f1; /* FlexStart primary hover color */
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 26px;
  color: white;
  background: #4154f1;
  cursor: pointer;
  font-weight: bold;
  height: 40px;
  padding-top: 0px;
}

.close-btn:hover {
  color: #f00;
   background: #001aff;
}
