:root {
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-family-code: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace,
  Liberation Mono, monospace;
  --text-color: #1f2328;
  --pink: #e35b8f;
  --color-text-subtle: #59636e;
}

.container {
  margin: 2rem;
  font-family: var(--font-family);
}

.Playground-ButtonsContainer {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.Playground-RunButton {
  background-color: #f6f8fa;
  color: #24292e;
  border: 1px solid rgba(27, 31, 35, 0.15);
  box-shadow: 0 1px 0 rgba(27, 31, 35, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.12s cubic-bezier(0.3, 0, 0.5, 1);
  outline: none;
}

.Playground-RunButton:hover {
  background-color: #e6ebf1;
  border-color: rgba(27, 31, 35, 0.15);
}

.Playground-RunButton:active {
  background-color: #ebedf0;
  border-color: rgba(27, 31, 35, 0.15);
  box-shadow: inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15);
  transform: translateY(1px);
}

.Playground-RunButton:focus-visible {
  box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.Playground-RunButton:disabled {
  color: #959da5;
  background-color: #f6f8fa;
  background-image: none;
  border-color: rgba(27, 31, 35, 0.15);
  cursor: default;
}

.Playground-Details {
  margin-top: 0rem;
}

.Playground-DetailsToolbar {
  position: absolute;
  top: -4px;
  right: 0;
}

.Playground-DetailsBody {
  font-size: 16px;
}

.Playground-DetailsBody pre {
  border-radius: 0 0 0.3rem 0.3rem !important;
  margin-bottom: 1.3rem;
  margin-top: -7px;
  font-size: auto;
}

.Playground-DetailsBody textarea {
  background-color: #fff !important;
  height: 100%;
  outline: none;
  overflow-x: auto;
  resize: none;
  white-space: pre;
  width: 100%;
  font-family: var(--font-family-code);
  font-size: 85%;
  line-height: 1.435;
}

.Playground-DetailsBody .Playground-Code {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin: 0;
  margin-top: 4px;
}

.Playground-DetailsBody .Playground-Output {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: 0 0 0.5rem;
}

.Playground-DetailsHeader {
  color: var(--text-color);
  cursor: pointer;
  margin-bottom: 0.8rem;
  outline: none;
  text-decoration: none;
  position: relative;
}

.Playground-Details summary span {
  width: calc(100% - 90px);
  display: inline-block;
}

.Playground-Details:not([open]) summary {
  border-bottom: 0.0625rem solid rgba(200, 209, 218, 0.7019607843);
  padding-bottom: 0.8rem;
}

.Playground-OutputLabel {
  color: var(--color-text-subtle);
  margin-right: 0.4rem;
}

.Playground-Error {
  color: var(--pink);
  margin-right: 0.4rem;
  padding-right: 0.5rem;
  margin-bottom: 0;
}

.js-exampleContainer pre,
.js-exampleContainer textarea.code {
  border: 0.0625rem solid rgba(200, 209, 218, 0.7019607843) !important;
  border: none;
  border-radius: 6px;
  color: #202224;
  overflow-x: auto;
  padding: 16px;
  tab-size: 4;
  white-space: pre;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.js-exampleContainer pre {
  border-top: 0 !important;
}

.js-exampleContainer textarea {
  height: 15.875rem;
}
