.sound-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}

.sound-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #cbd7df;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.sound-toggle[aria-pressed="true"] {
  border-color: rgba(25, 135, 84, 0.65);
  background: rgba(25, 135, 84, 0.18);
}

.sound-toggle[aria-pressed="true"] span {
  background: #198754;
  color: #fff;
}

.sound-toggle strong {
  color: #fff;
  font-size: 0.86rem;
}
