/* Shared Hamburger Menu Styles */
.hamburger-menu {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1002;
}

.hamburger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: white;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  font-size: 16px;
}

.hamburger-button:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.menu-items {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px 0;
  border: 1px solid #DDDDDD;
}

.menu-items.active {
  display: block;
}

.menu-item {
  display: block;
  padding: 12px 16px;
  color: #222222;
  text-decoration: none;
  transition: background-color 0.2s;
  font-size: 14px;
  line-height: 18px;
}

.menu-item:hover {
  background-color: #F7F7F7;
}

/* Add a divider between menu items if needed */
.menu-item-divider {
  height: 1px;
  background-color: #DDDDDD;
  margin: 8px 0;
}


