:root {
  color-scheme: light;
}

body {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.app-footer {
  background: #f2f2f2;
  border-top: 1px solid #e0e0e0;
}

.app-header-inner {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-title h1 {
  font-size: 1.5rem;
}

.step-title {
  font-size: 1.1rem;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: url("./images/icon-private-data-icons8.png") center/contain no-repeat;
}

.app-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.step-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.step-desc {
  margin-left: calc(38px + 0.6rem);
}

@media (max-width: 768px) {
  .app-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.muted {
  color: #6c757d;
}

.app-footer .muted a {
  color: #0d6efd;
  text-decoration: underline;
}

.app-footer .muted a:hover,
.app-footer .muted a:focus {
  color: #0b5ed7;
}

.columns {
  margin-top: 0.75rem;
}

.columns .form-check {
  padding-left: 0;
}

.columns .form-check-input {
  margin-left: 0;
}

.download-slot {
  margin-top: 0.75rem;
}

.status {
  min-height: 1.25rem;
}

.upload-zone {
  border: 2px dashed #d3d9e3;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #5f6b7a;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.upload-zone input {
  display: none;
}

.upload-zone.dragover {
  border-color: #0d6efd;
  background: #f0f6ff;
  color: #0d6efd;
}

.upload-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.upload-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.25rem;
}

.upload-title {
  font-weight: 600;
  font-size: 1rem;
}

.hidden {
  display: none;
}

table {
  font-size: 0.875rem;
}

main {
  flex: 1 0 auto;
}
