.menu-toggle {
  border: 1px solid rgba(0, 91, 187, 0.2);
  background: #fff;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand);
  padding: 0;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.menu-toggle:hover,
.menu-toggle:focus {
  box-shadow: 0 12px 24px rgba(0, 91, 187, 0.18);
  transform: translateY(-1px);
  outline: none;
}
.menu-icon {
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 999px;
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.menu-icon::before {
  top: -6px;
}
.menu-icon::after {
  top: 6px;
}
.menu-panel {
  position: absolute;
  right: 0;
  top: 58px;
  background: #f8fbff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(0, 91, 187, 0.12);
  min-width: 210px;
  display: none;
  z-index: 20;
}
.menu-panel.is-open {
  display: block;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.menu-list a,
.menu-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  display: block;
}
.menu-list a:hover,
.menu-list a:focus,
.menu-link:hover,
.menu-link:focus {
  background: rgba(0, 91, 187, 0.08);
  color: var(--brand);
  outline: none;
}
.menu-meta {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.1rem 0.2rem;
}
.menu-divider {
  height: 1px;
  background: rgba(0, 91, 187, 0.12);
  margin: 0.4rem 0 0.6rem;
}
.menu-logout-form {
  margin: 0;
}
.menu-logout-form button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
  display: block;
}
