:root {
  --artist-sidebar-width: 224px;
  --artist-sidebar-gap: 14px;
}

body.artist-sidebar-push {
  padding-left: calc(var(--artist-sidebar-width) + (var(--artist-sidebar-gap) * 2));
}

.artist-sidebar {
  position: fixed;
  top: var(--artist-sidebar-gap);
  left: var(--artist-sidebar-gap);
  bottom: var(--artist-sidebar-gap);
  width: var(--artist-sidebar-width);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1500;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar {
    border-color: rgba(255,255,255,.14);
    background: rgba(30,30,30,.78);
  }
}

.artist-sidebar__profile-wrap {
  position: relative;
}

.artist-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 8px;
  background: rgba(0,0,0,.03);
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__profile {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
  }
}

.artist-sidebar__avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__avatar {
    border-color: rgba(255,255,255,.14);
    background: #1e1e1e;
  }
}

.artist-sidebar__who {
  min-width: 0;
}

.artist-sidebar__name {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-sidebar__role {
  font-size: 11px;
  color: rgba(0,0,0,.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__role {
    color: rgba(255,255,255,.65);
  }
}

.artist-sidebar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 6px;
  z-index: 20;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__dropdown {
    border-color: rgba(255,255,255,.14);
    background: rgba(30,30,30,.92);
  }
}

.artist-sidebar__dropdown.is-open {
  display: block;
}

.artist-sidebar__dropdown-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 800;
}

.artist-sidebar__dropdown-link:hover {
  background: rgba(0,0,0,.05);
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__dropdown-link:hover {
    background: rgba(255,255,255,.06);
  }
}

.artist-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.artist-sidebar__link {
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 11px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.artist-sidebar__link:hover {
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__link:hover {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
  }
}

.artist-sidebar__link.is-active {
  border-color: rgba(0,0,0,.12);
  background: rgba(47,99,255,.16);
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__link.is-active {
    border-color: rgba(255,255,255,.14);
    background: rgba(59,130,246,.22);
  }
}

.artist-sidebar__foot {
  margin-top: auto;
}

.artist-sidebar__logout {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 9px 11px;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .artist-sidebar__logout {
    border-color: rgba(255,255,255,.14);
  }
}

@media (max-width: 1100px) {
  body.artist-sidebar-push {
    padding-left: 0;
  }

  .artist-sidebar {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 14px 14px 0;
    border-radius: 22px;
    gap: 8px;
  }

  .artist-sidebar__nav {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  .artist-sidebar__foot {
    margin-top: 0;
  }

  .artist-sidebar__logout {
    width: auto;
    padding: 9px 14px;
  }
}
