.player {
  width: 100%;
  margin-bottom: 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #fff;
}
.player-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 6px 8px;
}
.player-btn {
  background: none;
  border: 1px solid #888;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  padding: 2px 8px;
  line-height: 1.4;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  flex-shrink: 0;
}
.player-btn:hover { border-color: #fff; }
.player-progress {
  flex: 1;
  height: 6px;
  background: #444;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.player-progress-fill {
  height: 100%;
  background: #cc0000;
  border-radius: 3px;
  width: 0%;
  pointer-events: none;
}
.player-time {
  flex-shrink: 0;
  color: #aaa;
  font-size: 11px;
}
