.mic-meter {
  height: 18px;
  margin: 9px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: .25;
  transition: opacity .2s;
}

.mic-meter.active { opacity: 1; }

.mic-meter i {
  display: block;
  width: 3px;
  height: 5px;
  border-radius: 3px;
  background: var(--green);
  transition: height .08s;
}

.language-label { margin-top: 0; }

#language {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfcf8;
  color: var(--ink);
  font: 600 12px "DM Sans", sans-serif;
  outline: none;
}

#language:disabled { opacity: .6; cursor: not-allowed; }
