html {
  font-family: sans-serif;
}

body {
  margin: 0;
}

#root {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  text-align: center;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  flex: 1 0 auto;
  overflow: hidden;
}

.overview-container {
  flex: auto;
  overflow: hidden;
}

.overview-container img {
  width: 100%;
  height: 100%;
  max-width: 343px;
  max-height: 540px;
  object-fit: contain;
  object-position: top;
}

.public-id-container {
  flex: auto;
  margin-top: 16px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  justify-items: center;
  padding: 32px;
  border-top: 1px solid #ebebeb;
}

.button {
  color: #fff;
  width: auto;
  font-size: 16px;
  background: #47a8f8 !important;
  font-weight: bold;
  border-radius: 4px;
  text-transform: none;
  background-color: #47a8f8 !important;
  padding: 16px;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
    0px 1px 5px 0px rgb(0 0 0 / 12%);
  border: none;
}

.button:hover {
  background-color: #75c1ff !important;
}

.button.full {
  width: 100%;
  max-width: 500px;
}

#root.result {
  min-height: 100vh;
  overflow: auto;
}

.json-container {
  background: #f0f0f0;
  padding: 32px;
  text-align: start;
}
