﻿.wmm-mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: max-content;
  max-width: calc(100vw - 112px);
  margin: 0;
  padding: 0;
  border: 0;
  white-space: nowrap;
  z-index: 9999;
  pointer-events: auto;
}

.wmm-mobile-menu,
.wmm-mobile-menu * {
  box-sizing: border-box;
}

.wmm-mobile-menu.wmm-hidden-by-context {
  display: none !important;
}

.wmm-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.wmm-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: var(--wmm-button-height, 26px);
  margin: 0;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(123, 187, 94, 0.12);
  color: #3d6f2b;
  text-decoration: none;
  font-size: var(--wmm-font-size, 13px);
  line-height: var(--wmm-button-height, 26px);
  white-space: nowrap;
  box-shadow: none;
  outline: none;
  transform: none;
  transition: none;
  animation: none;
  -webkit-tap-highlight-color: transparent;
}

.wmm-link:hover,
.wmm-link:focus,
.wmm-link:active {
  background: rgba(123, 187, 94, 0.12);
  color: #3d6f2b;
  text-decoration: none;
  box-shadow: none;
  outline: none;
  transform: none;
  transition: none;
  animation: none;
}

@media (max-width: 420px) {
  .wmm-mobile-menu,
  .wmm-links {
    gap: 4px;
  }

  .wmm-link {
    min-width: 30px;
    height: var(--wmm-compact-button-height, 24px);
    padding: 0 5px;
    font-size: var(--wmm-compact-font-size, 12px);
    line-height: var(--wmm-compact-button-height, 24px);
  }
}
