#scrobbles-recent {
  display: grid;
  gap: 8px;

  max-height: 664px;
  overflow-x: scroll;
}

#scrobbles-info_tracks,
#scrobbles-info_artists {
  background-color: var(--darkgrey);
  border-radius: 6px;
  display: grid;
  gap: 8px;
  max-height: 290px;
  overflow-x: scroll;
  padding: 2px 4px;
}

.scrobble-track,
.scrobble-track:visited {
  background-color: var(--darkgrey);
  border-radius: 6px;
  color: var(--white);

  display: flex;
  overflow: hidden;
  padding: 0px;
  position: relative;
  text-decoration: none;
  transition: 150ms;
  z-index: 10;
}

.scrobble-track:hover {
  background-color: var(--grey);
  filter: brightness(120%);

  .scrobble-track_img {
    rotate: -5deg;
  }
}

.scrobble-track_dynamic {
  background: transparent;
  text-shadow: 1px 1px 2px var(--black);
}

.scrobble-track_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: inherit;
}

.scrobble-track_name {
  display: block;
  font-family: "Stack Sans Text";
  font-weight: bold;
  min-width: 0;

  white-space: nowrap;
  z-index: inherit;
}

.scrobble-track_ago {
  font-style: italic;
  opacity: 0.75;
}

.scrobble-track_img,
.scrobble-user_img {
  background-image: url("/assets/placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  margin-right: 8px;
}

.scrobble-track_img {
  aspect-ratio: 1;
  height: 64px;
  object-fit: cover;
  transition: 150ms;
  z-index: inherit;
}

.scrobble-user_img {
  aspect-ratio: 1;
  border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
  width: 100px;
}

.scrobble-user {
  display: flex;
  justify-content: center;
  margin: 16px 0px;
}

.scrobble-user_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px;
}

.scrobble-user_name {
  width: fit-content;
}

.scrobble-dynamicbg {
  background-position: center;
  display: inline-block;
  filter: blur(3px) brightness(60%) saturate(120%);
  position: absolute;
  rotate: 40deg;
  scale: 350%;
  user-select: none;
  z-index: 0;
}
