/* SPDX-License-Identifier: LicenseRef-Proprietary */
:root {
  color-scheme: dark;
  font:
    16px/1.5 system-ui,
    sans-serif;
  background: #101827;
  color: #e5edf9;
}
body {
  margin: 0;
}
header {
  padding: 16px 5vw;
  background: #28321a;
  color: #e2ff9b;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
main {
  max-width: 980px;
  margin: 45px auto;
  padding: 0 24px;
}
h1 {
  font-size: 3rem;
  line-height: 1.1;
}
h2 {
  font-size: 1.3rem;
}
section,
aside,
article {
  border: 1px solid #364358;
  border-radius: 12px;
  padding: 22px;
  margin: 20px 0;
  background: #172335;
}
aside {
  color: #b2c3d8;
}
label {
  display: block;
  margin: 16px 0;
}
input {
  display: block;
  background: #101827;
  color: inherit;
  border: 1px solid #52657e;
  border-radius: 6px;
  padding: 10px;
  width: min(90%, 360px);
  font: inherit;
}
button,
a.download {
  display: inline-block;
  border: 0;
  border-radius: 6px;
  background: #c1eb79;
  color: #152008;
  font: inherit;
  font-weight: 650;
  padding: 10px 16px;
  margin: 6px 10px 6px 0;
  cursor: pointer;
  text-decoration: none;
}
button:disabled {
  opacity: 0.4;
  cursor: wait;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 20px;
  background: #0c1320;
  border-radius: 8px;
  max-height: 500px;
  overflow: auto;
}
code {
  overflow-wrap: anywhere;
}
.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
small {
  display: block;
  color: #b2c3d8;
}
.status {
  color: #e2ff9b;
}
#message {
  color: #ffe0a4;
}
[hidden] {
  display: none !important;
}
.untouched {
  color: #b7ffcc;
  background: #124129;
  padding: 20px;
  border: 2px solid #38c172;
}
.changed {
  color: #ffd9d9;
  background: #581b26;
  padding: 20px;
  border: 2px solid #ff697c;
}
