* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fafafa;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.page__header {
  margin-bottom: 2rem;
}
.page__title {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
.page__subtitle {
  color: #6b6b6b;
  margin: 0;
}

.upload-form {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 1.5rem;
}
.upload-form__field {
  margin-bottom: 1rem;
}
.upload-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.upload-form__select,
.upload-form input[type=file] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
}
.upload-form__submit {
  display: inline-block;
  background: #2f5fd6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.upload-form__submit:hover {
  background: #244aad;
}
.upload-form__submit:focus-visible {
  outline: 2px solid #2f5fd6;
  outline-offset: 2px;
}

.results {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8d8d8;
}
.results__title {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.results__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.results__link {
  color: #2f5fd6;
  text-decoration: none;
}
.results__link:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */