.drawer {
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: calc(100% - 50px);
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-content {
  padding: 20px;
  overflow-y: auto; /* Ensure the drawer content is scrollable */
}

.drawer .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
