@import 'colors.css';
@import 'fonts.css';
@import 'progressbar.css';
@import 'file-list.css';

body {
  background: var(--bg-color);
  color: var(--text-color);
}

.button {
  display: inline-flex;
  height: 2rem;
  padding: 0 10px;
  border: none;
  background-color: var(--gray1);
  color: var(--text-color);
  outline: none;

  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;

  transition: background 0.25s;
}

.button-large {
  min-width: 12.5rem;
  height: 3.125rem;
}

.button:hover {
  background: var(--gray2);
}

.button:active {
  background: var(--gray3);
}

.file {
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
}

.file-input label {
  position: relative;
}

.header {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin: 0 0 1.25rem 0;
}

.drop-zone {
  border: 0.25rem dashed var(--gray1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.drop-zone > svg {
  margin-bottom: 0.625rem;
}

.highlight {
  border-color: var(--gray3);
}

.link {
  text-decoration: underline;
  cursor: pointer;
  color: var(--blue4);
}

.link:hover {
  color: var(--blue5);
}

.panel {
  width: 600px;
  border-radius: 0.625rem;
  background-color: var(--panel-color);
  margin: 3.125rem auto;
  padding: 1.875rem;
}

#log {
  height: 1.25rem;
}
