.player95 {
  padding: 0px;
  font-family: "Perfect DOS VGA 437", monospace;
  font-size: 12px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #c1c1c1;
  color: #000;
  padding: 2px 4px;

  opacity: 1;
}

.hide-controls .controls {
  opacity: 0;
  pointer-events: none;
}

.hide-cursor {
  cursor: none;
}

.controls button {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #c0c0c0;
  border: 2px outset #fff;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
}

#time {
  padding: 0 10px;
}

input[type="range"] {
  appearance: none;
  height: 6px;
  background: #808080;
  outline: none;
  margin: 0;
  padding: 0;

  cursor: pointer;
}

/* Tor suwaka */
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #c0c0c0;
  border: 2px solid #444;
  border-right-color: #f0f0f0;
  border-bottom-color: #f0f0f0;
}

input[type="range"]::-moz-range-track {
  height: 6px;
  background: #c0c0c0;
  border: 2px solid #444;
  border-right-color: #f0f0f0;
  border-bottom-color: #f0f0f0;
}

/* Gałka */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 20px;
  background: #c0c0c0;
  border: 2px outset #fff;
  margin-top: -9px; /* wyśrodkowanie */
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #c0c0c0;
  border: 2px outset #fff;
  cursor: pointer;
}

#seekBar {
  flex-grow: 1;
}

.volume-bar-wrapper {
  position: relative;
  margin-right: 10px;
}

.volume-bar-control {
  position: relative;
  z-index: 10;
}

/* Główne ustawienia suwaka */
#volumeBar {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  width: 60px;
  height: 6px;
  position: relative;
  z-index: 10;
}

/* Chrome / Edge / Safari */
#volumeBar::-webkit-slider-runnable-track {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 6px;
}

/* Firefox */
#volumeBar::-moz-range-track {
  background: transparent;
  border: none;
  height: 6px;
}

/* Twój customowy pasek pod spodem */
.volume-bar-slider-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Fullscreen Fullscreen Fullscreen */

/* Fullscreen Fullscreen Fullscreen */

/* Fullscreen Fullscreen Fullscreen */

.player95:fullscreen {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000; /* tło fullscreen */
}

.player95:fullscreen video {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.player95:fullscreen .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #c1c1c1;
  padding: 4px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
