.myspace-container {
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}



.myspace-player {
  background: linear-gradient(to bottom, #eee 20%, #aaa 80%, #ddd 100%);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  /* border-bottom: 1px solid #000; */
}

.myspace-play-pause-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #eee 20%, #aaa 80%, #ddd 100%);
  border: 2px solid #888;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.myspace-play-pause-btn:hover {
  background: linear-gradient(to bottom, #777 0%, #444 100%);
}

.myspace-play-pause-btn:active {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.myspace-play-icon, .myspace-pause-icon {
  width: 0;
  height: 0;
}

.myspace-play-icon {
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.myspace-pause-icon {
  width: 12px;
  height: 16px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  display: none;
}

.myspace-player.playing .myspace-play-icon {
  display: none;
}

.myspace-player.playing .myspace-pause-icon {
  display: block;
}

.myspace-song-info {
  flex: 1;
  background-color: #000;
  padding: 8px;
  border-radius: 5px;
  color: white;
  font-size: 11px;
  overflow: hidden;
}

.myspace-song-title {
  font-weight: bold;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.myspace-artist-name {
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.myspace-controls {
  display: flex;
  gap: 2px;
  flex-direction: column;
  align-items: flex-end;
}

.myspace-control-link {
  color: #6cf;
  text-decoration: none;
  font-size: 10px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.8);
}

.myspace-control-link:hover {
  color: #9ef;
  text-decoration: underline;
}

.myspace-visualizer {
  display: flex;
  gap: 2px;
  height: 20px;
  align-items: flex-end;
}

.myspace-bar {
  width: 3px;
  background: #000;
  box-shadow: 0 0 3px #0f0;
  transition: height 0.1s ease;
}


