/* === AUDIO PLAYER CONTROLS === */

.player-controls {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-bottom: 10px;
}

/* elke knop neemt evenveel ruimte */
.player-controls button {
  flex: 1 1 0;
  height: 64px;

  border-radius: 14px;
  border: none;
  background: #111;
  color: white;

  font-size: 26px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* hover / active feedback */
.player-controls button:hover {
  background: #000;
}

.player-controls button:active {
  transform: scale(0.97);
}

