@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./material-symbols-outlined.woff2") format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./material-symbols-rounded.woff2") format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Sharp";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("./material-symbols-sharp.woff2") format("woff2");
}
.material-symbols-sharp {
  font-family: "Material Symbols Sharp";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

.form-login {
  max-width: 30em;
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
}
.form-login input[type=submit] {
  align-self: center;
  width: 8em;
}
.form-login input {
  font-size: 16px;
}

@keyframes anim-dropdown {
  from {
    height: 0;
  }
}
@keyframes anim-undropdown {
  to {
    height: 0;
  }
}
.nav-dropdown {
  overflow: clip;
  display: none;
}
.nav-dropdown.drop {
  display: block;
  animation: 0.25s ease-in-out anim-dropdown;
}
.nav-dropdown.undrop {
  display: block;
  animation: 0.25s ease-in-out anim-undropdown;
}

.nav-dropdown-reference {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.nav-dropdown-reference .nav-dropdown {
  width: calc(100% - 2em);
  order: 1;
}
.nav-dropdown-reference .nav-dropdown-content {
  flex-grow: 1;
}

.nav-dropdown-button {
  cursor: pointer;
  color: #EB2431;
  transform: rotate(0.25turn);
}

.nav-dropdown-button.toggled {
  transform: rotate(0turn);
}

body {
  color: white;
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  background-color: #001B29;
}

.view-content {
  width: min(80em, 100vw);
  margin: auto;
  min-height: 100vh;
  display: flex;
  flex-flow: row nowrap;
  background-color: #001B29;
}
.view-content main {
  flex-grow: 1;
}

main {
  padding: 0 48px;
  margin: 16px 0;
}

blockquote {
  margin-left: 0;
  padding-left: 2.5em;
  border-left: 4px solid #EE8689;
}

a {
  color: #EE8689;
}
a:visited {
  color: #EE8689;
}

button,
a.link-button,
input[type=submit] {
  text-decoration: none;
  cursor: default;
  padding: 4px;
  border: 0;
  border-radius: 4px;
  background-color: #AD101A;
  color: white;
}
button:hover,
a.link-button:hover,
input[type=submit]:hover {
  background-color: #780000;
}
button:active,
a.link-button:active,
input[type=submit]:active {
  background-color: #660000;
}

input[type=submit].sidebar-item {
  font-size: 18px;
  color: #EB2431;
  background-color: inherit;
  cursor: pointer;
  border-radius: 0;
  border-bottom: 2px dotted #12212B;
  margin: 0.25em 0;
  padding: 0.5em 0;
  padding: 0.5em 16px;
  border-bottom: 2px dotted #12212B;
}
input[type=submit].sidebar-item:visited {
  color: #EB2431;
}

input[type=text],
input[type=password] {
  padding: 0.5em;
  border: 2px solid #12212B;
  border-radius: 4px;
  background-color: #000D14;
  color: white;
}
input[type=text]:focus,
input[type=password]:focus {
  border-color: #AD101A;
  outline: none;
}

input[type=password] {
  font-family: caption;
}

.hidden {
  display: none;
}

#sidebar {
  background-color: #000D14;
  color: white;
  flex-basis: 300px;
  flex-shrink: 0;
  padding: 0 24px;
  word-break: break-word;
}
#sidebar h1 {
  color: #EB2431;
  margin: 1em 0 0.5em;
}
#sidebar a {
  text-decoration: none;
}
#sidebar ul {
  list-style-type: none;
  padding: 0;
}
#sidebar ul ul {
  padding-left: 2em;
}
#sidebar ul a {
  font-size: 18px;
  color: #EB2431;
  background-color: inherit;
  cursor: pointer;
  border-radius: 0;
  border-bottom: 2px dotted #12212B;
  margin: 0.25em 0;
  padding: 0.5em 0;
  display: block;
}
#sidebar ul a:visited {
  color: #EB2431;
}
#sidebar #sidebar-content {
  width: 100%;
}

.user-digest {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-digest .username {
  font-weight: bold;
}

hr {
  border: 2px dotted gray;
}

.subtitle {
  color: gray;
  font-size: 16px;
}

.editor textarea {
  width: 100%;
  font-size: 14px;
  resize: vertical;
  border: 0;
  background-color: #0C161C;
  color: white;
}
.editor textarea :focus {
  outline: none;
}
.editor input[type=submit] {
  font-size: 16px;
  padding: 0.5em 1em;
}

.page-admin {
  display: flex;
  padding: 16px 0;
}

.editor .cm-editor {
  height: max(70vh, 200px);
  padding-top: 16px;
  font-size: 14px;
}

.login-form-container {
  background-color: #000D14;
  width: 400px;
  padding: 1em 4em;
  border-radius: 1em;
  margin: 4em auto;
}
.login-form-container h1 {
  color: #EB2431;
}

blockquote {
  margin-left: 0;
  padding-left: 32px;
  border-left: 2px solid #EB2431;
}

.footnote-definition p {
  display: inline;
}

a.noexist {
  color: #AA88A2;
}

a.external-link span.material-symbols-outlined {
  font-size: inherit;
  color: #646E68;
}