/* Music Player Bar - inline navbar player */
#mp-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
  background: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
  height: auto;
}
#mp-bar-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
#mp-bar-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  color: var(--text-color, #222226);
}
.mp-bar-play { flex-shrink: 0; }
.mp-bar-play button {
  background: none;
  border: none;
  color: var(--text-color, #222226);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.mp-bar-play button:hover { background: var(--bg-1, #e7e7e7); }
.mp-vol-slider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 60px;
}
.mp-vol-slider input[type=range] {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-1, #e7e7e7);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.mp-vol-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary-color, #087E96);
  cursor: pointer; border: none;
}
.mp-vol-slider input[type=range]::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary-color, #087E96);
  cursor: pointer; border: none;
}
#mp-bar-row {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--divider-color);
}
@media (max-width: 768px) {
  #mp-bar-row { padding: 3px 0; }
  #mp-bar { padding: 2px 6px; gap: 2px; height: 32px; }
  #mp-bar-title { max-width: 45px; font-size: 12px; }
  .mp-bar-play button { width: 22px; height: 22px; }
  .mp-vol-slider { width: 40px; }
}
@media (max-width: 600px) {
  #mp-bar-row { padding: 2px 0; }
  #mp-bar { padding: 2px 4px; }
  #mp-bar-title { max-width: 30px; font-size: 11px; }
  .mp-bar-play button { width: 20px; height: 20px; }
  .mp-vol-slider { width: 30px; }
}
@media (max-width: 480px) {
  #mp-bar-row { padding: 1px 0; }
  #mp-bar-title { max-width: 24px; font-size: 11px; }
}
