/* Music player styles */

.music-player {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  margin: 4px 0;
}

.music-info {
  flex: 1;
}

.music-artist {
  font-family: Georgia, serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.music-track {
  font-family: Georgia, serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

.music-controls {
  display: flex;
  align-items: center;
}

.music-play {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}

.music-play:not([disabled]) {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.7);
}

.music-play:not([disabled]):hover {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.9);
}
