.queue-select {
  display: flex;
  background-color: #3c3240;
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 1rem;
}

.queue-option {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
  color: rgba(255, 255, 255, 0.5);
}

.queue-option:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.queue-option.active {
  background-color: #4d3f52;
  color: #fff;
}

.queue-option span {
  color: inherit;
  margin-right: 0.35rem;
}
