@import url("/static/base/reset.css");
@import url("/static/base/tokens.css");
@import url("/static/base/typography.css");

.shadow-avatar {
  flex-shrink: 0;
}

.shadow-icon {
  position: relative;
  border-radius: 999px;
  overflow: hidden;
}

.shadow-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.shadow-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shadow-icon-img[src$=".svg"] {
  object-fit: contain;
  padding: 10%;
  box-sizing: border-box;
  background: #ffffff;
}

.playground-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-1);
  border-radius: 999px;
  transition: background-color 120ms ease;
  text-decoration: none;
}

.playground-back-button:hover {
  background: var(--surface-2);
}

.playground-back-button svg {
  width: 20px;
  height: 20px;
}
