/* ===========================================
   ALBUM VIEW - Single album detail page
   =========================================== */

#album-view {
  padding: 20px;
}

/* Back button - shared styles for both ID and class selectors */
#back-to-albums,
.back-btn {
  margin-bottom: 20px;
  background: transparent;
  border: none;
  color: #eee;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

#back-to-albums:hover,
.back-btn:hover {
  color: var(--accent1);
}

/* Album Header - cover + details side by side */
.album-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.album-cover-large {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
}

<<<<<<< HEAD
.album-details { display: flex; flex-direction: column; justify-content: flex-end; }

.album-details .album-title { font-size: 24px; font-weight: 800; }
.album-details .album-artist { font-size: 16px; color: var(--muted); margin-top: 4px; }

.album-tracks { display: flex; flex-direction: column; }

.album-tracks .track {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.album-tracks .track:hover { background: rgba(123, 47, 247, 0.2); }
.album-tracks .track-title { font-size: 16px; flex: 1; }
.album-tracks .track-artist { font-size: 14px; color: var(--muted); margin: 0 15px; }
.album-tracks .track-duration { font-size: 14px; color: var(--muted); }
.album-view {
=======
.album-details {
>>>>>>> bdfbf29487a734db184a8951998bee4c8e96d3b8
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.album-details .album-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.album-details .album-artist {
  font-size: 16px;
  color: var(--muted);
}

/* Track List */
.album-tracks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.album-tracks .track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.album-tracks .track:hover {
  background: rgba(123, 47, 247, 0.15);
}

.album-tracks .track.active-track {
  background: rgba(123, 47, 247, 0.25);
  box-shadow: var(--glow);
}

.album-tracks .track-title {
  font-size: 16px;
  color: #fff;
  flex: 1;
}

.album-tracks .track-duration {
  font-size: 14px;
  color: var(--muted);
  min-width: 50px;
  text-align: center;
}
