:root {
  --header-height: 48px;
}

@media screen and (min-width: 768px) {
	:root {
	--header-height: 48px;
	}
}

body {
  display: flex;
  padding-top: var(--header-height);
}

header {
  z-index: 1;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;

  background: #FFFFFF;
  border-bottom: 1px solid rgba(37, 39, 59, 0.1);
  box-shadow: 0px 1px 4px rgba(37, 39, 59, 0.06);
}

header .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .left button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--header-height);
  height: var(--header-height);
  border-right: 1px solid hsl(235deg 23% 19% / 10%);

  color: #605A57;
}

header .left button:hover {
  background-color: rgba(37, 39, 59, 0.03);
}

header .left h1 {
  user-select: none;
}

header .right {
  display: flex;
}

header .right button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;

  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  /* identical to box height, or 150% */
  color: #605A57;

  border-left: 1px solid rgba(37, 39, 59, 0.1);
}

header .right button:hover {
  background-color: rgba(37, 39, 59, 0.03);
}

.content-area {
  position: relative;

  flex: 1;
  display: flex;
  flex-direction: column;

  padding: 12px 12px 0;

  /*justify-content: center;
  align-items: center;*/
}

.content-area .loader {
  margin: auto;
  flex-shrink: 0;
}

/*Hide the actual input*/
.content-area #file-input {
  display: none;
}

.content-area button.action {
  display: inline-flex;
  margin: auto;
}

/*DROP ZONE*/
#drop-zone {
  position: absolute;
  inset: 0;
  background-color: #fbfaf9;
  /*z-index: 100;*/

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding: 12px;

  transition: opacity 0.2s;
}

#drop-zone.hidden {
  display: none;
}

.drop-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border: 1px dashed rgba(37, 39, 59, 0.1);
  border-radius: 1px;

  pointer-events: none; /* Let clicks pass through if needed, mostly for visual feel */
  text-align: center;
  gap: 1rem;

  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  /* identical to box height, or 117% */

  color: #605A57;
}
