:root {
  color-scheme: light dark;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: light-dark(#fdffe6, #201e19);
  padding: 0 0.5rem;
}

main {
  max-width: 80ch;
  margin: 0 auto;
}

footer {
  text-align: center;
}

label {
  display: block;
  width: fit-content;
  padding: 0.4rem 0;
  cursor: pointer;
}

canvas {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.color-circle {
  display: inline-block;
  border-radius: 50%;
  height: 1em;
  width: 1em;
  position: relative;
  top: 4px;
  background-color: rgb(255, 0, 234);
  border: 1px solid;
}

.inputSection {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  margin-bottom: 1rem;
  border-top: 1px solid light-dark(#9f9f9f, #656565);
  border-bottom: 1px solid light-dark(#9f9f9f, #656565);
}

.samplesSection {
  display: flex;
  flex-direction: column;
  padding-inline: 0.4rem;
  margin-top: 0.4rem;
  margin-left: 0.4rem;
  border-left: 1px solid light-dark(#9f9f9f, #656565);
}

.samples {
  display: flex;
  overflow-y: auto;
  width: 100%;
  gap: 0.6rem;
  padding: 0.4rem 0;
}

.samples button {
  max-height: 8em;
  max-width: 6em;
  display: block;
}

.samples button img {
  height: 100%;
}

input[type="file"] {
  display: none;
}

#fileSelectorButton,
select {
  border-radius: 4px;
  border: 1px solid light-dark(#9f9f9f, #656565);
  background-color: light-dark(#f9ffb8, #484847);
}

select {
  padding: 0.4rem;
}

#fileSelectorButton {
  padding: 0.3rem 0.6rem;
  display: inline-block;

}

.step-section {
  border-bottom: 1px solid light-dark(#9f9f9f, #656565);
}