.audio-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #0B0617D9;
  border: 1px solid #54DDFF;
  border-radius: 0.5rem;
  box-shadow: 0 0 6px #54DDFF, inset 0 0 3px #54DDFF;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.75rem;
  color: #F9CDF6;
}

.audio-widget-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#audio-toggle {
  width: 1.6rem;
  height: 1.6rem;
  flex: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: none;
  border: 1px solid #54DDFF;
  color: #54DDFF;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.75rem;
}

#audio-toggle:hover {
  background: #54DDFF26;
}

#audio-track-name {
  width: 5rem;
  flex: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#audio-volume {
  width: 3.5rem;
  height: 0.9rem;
  accent-color: #54DDFF;
  cursor: pointer;
}

.audio-progress {
  height: 3px;
  border-radius: 2px;
  background: #54DDFF33;
  overflow: hidden;
  cursor: pointer;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: #54DDFF;
  transition: width 0.1s linear;
}
