.pp-container {
  border: 1px solid #e6e6e6;
  padding: 12px;
  margin: 16px 0;
  background: #fafafa;
  border-radius: 10px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.pp-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.pp-title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pp-time {
  font-variant-numeric: tabular-nums;
  color: #666;
  font-size: 12px;
}

.pp-waveform {
  width: 100%;
  height: 96px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 10px;
}

.pp-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-play,
.pp-seek-back,
.pp-seek-fwd,
.pp-mute,
.pp-download {
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

.pp-seek-back,
.pp-seek-fwd,
.pp-mute,
.pp-download {
  background: #ddd;
  color: #111;
}

.pp-volume {
  flex: 1;
}
.pp-error {
  color: #b00020;
  background: #ffe8ec;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ffccd5;
}
