/* .countdown {
  font-family: "Space Mono", monospace;
  font-size: 52px;
  position: fixed;
  top: 85px;
  right: 25px;
  pointer-events: none;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  letter-spacing: -2px;
  display: none;
} */

.play-pause-btn {
  position: fixed;
  top: 28px;
  top: 40px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  width: 80px;
  height: 30px;
  font-size: 14px;
  cursor: pointer;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  display: none;
}

.play-pause-btn:hover {
  background-color: rgba(0, 255, 0, 0.2);
}

/* Volume control styles */
.volume-control {
  position: fixed;
  top: 28px;
  top: 40px;
  right: 120px;
  /* Positioned to the left of play/pause button */
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  height: 30px;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  font-family: "Space Mono", monospace;
  display: none;
}

.volume-icon {
  cursor: pointer;
  margin-right: 8px;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.volume-slider {
  /* -webkit-appearance: none; */
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: none;
}
