.hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
}
.hamburger-button {
  font-size: 28px;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.hamburger-menu {
  position: absolute;
  right: 0;
  margin-top: 5px;
  width: 12rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  overflow: hidden;
}
.hamburger-menu-hidden {
  display: none !important;
}
ul.hamburger-menu-list {
  list-style: none;
  padding: 15px 0px 15px 0px;
  margin: 0;
}
ul.hamburger-menu-list li {
  padding: 5px 10px 5px 10px;
  margin: 0;
}
.hamburger-menu-item {
  display: block; 
  width: 100%; 
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
}