/* components/Playground/styles.css */
.playground {
  border-radius: 3px;
  padding: 1rem;
  gap: 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  flex: 1 1 auto;
}
.playground .editor,
.playground .codemod-output {
  height: 50vh;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}
.playground .editor.source-code {
  background-color: #e4fffb;
}
.playground .editor.codemod {
  background-color: #f2fff2;
}
.playground .user-inputs {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr 1fr;
}
.playground .input-field {
  background-color: transparent;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.playground .codemod-output {
  background-color: #feffe0;
}
@media (max-width: 767px) {
  .playground {
    grid-template-rows: 1fr;
  }
  .playground .user-inputs {
    grid-template-columns: 1fr;
  }
}

/* components/App/styles.css */
body {
  background-color: #383a3a;
  font-family:
    "Fira Code",
    "Courier New",
    Courier,
    monospace;
  margin: 0;
}
main {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
h1 {
  margin: 0;
  background: #656565;
  padding: 0.5rem;
  box-shadow: 0 -3px 6px black inset;
}
h2 {
  margin: 0.5rem;
}
h1,
h2 {
  color: #d7fff9;
  text-shadow: 3px 3px #a266a2, 6px 6px #4d4d46;
}
/*# sourceMappingURL=main.css.map */
