/* Outer Menu */
.outerMenu {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
  height: auto;
  width: 70px;
  gap: 2px;
  padding: 1px;
  box-sizing: border-box;
  pointer-events: auto;
  background: rgb(50 50 50);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 2000;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
}

.menuButton {
  width: 100%;
  height: 70px;
  border-radius: 10px;
  border-width: 4px;
  border-color: #c4c4c4;
  background: #ebebeb;
  padding: 0;
  font-size: 16px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuButton.half-height {
  height: 35px;
}

.comment-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgb(34 34 34 / 70%);
  border: 1px solid rgb(255 255 255 / 10%);
  padding: 1px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0%);
  z-index: 10000;
}

.comment-emoji {
  width: 42px;
  height: 42px;
  font-size: 16px;
  background: #ededed;
  border: 0.5px solid #444;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

.comment-emoji:hover {
  background: #444;
  border-color: #666;
}

@keyframes voice-throb {
  0%,
  100% {
    background-color: rgb(220 0 0 / 30%);
  }

  50% {
    background-color: rgb(220 0 0 / 90%);
  }
}

.voice-ringing {
  animation: voice-throb 1.4s ease-in-out infinite;
}

.menuButton[hidden] {
  display: none;
}

.menuButton:active {
  transform: scale(0.97);
}
