body {
  padding: 0;
  margin: 0;
  background-color: rgb(32, 32, 32);
  color: rgb(200, 200, 200);
}

a{
  text-decoration: underline;
  color: rgb(10, 192, 10);
  font-weight: 500;
  transition: color 0.3s;
}

a:hover {
  color: rgb(0, 250, 0);
}

.header {
  top: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: rgb(48, 48, 48);
  box-shadow: 0px 4px 13px rgba(0,0,0,0.25);
}

.nav-header {
  display: flex;
  width: fit-content;
}

.options-header {
  display: flex;
  width: fit-content;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-sidebar-links, .nav-sidebar-links-hidden {
  display: flex;
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  transition: all 0.2s ease;
  overflow: hidden;
}

.nav-sidebar-links {
  width: fit-content;
  height: fit-content;
  max-height: fit-content;
  margin-right: 1em;
  margin-top: 0.5em;
  gap: 1rem;
}

.nav-sidebar-links-hidden {
  width: 0;
  height: 0;
  max-height: 0;
  margin-right: 0;
  margin-top: 0;
  gap: 0rem;
}

.nav-links a, .nav-sidebar-links a {
  text-decoration: none;
  color: rgb(61, 122, 61);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-sidebar-links a:hover {
  color: rgb(0, 250, 0);
  text-decoration: underline;
}

.nav-sidebar {
  display: none; /* Hidden until `startMobilePresentation()` is called in JS */
  position: absolute;
  right: 1em;
  top: 1em;
  width: fit-content;
  min-width: 2em;
  height: fit-content;
  min-height: 2em;
  background: rgb(48, 48, 48);
  box-shadow: 0px 4px 13px rgba(0,0,0,0.25);
  border: 1px solid rgb(80, 80, 80);
  border-radius: 0.2em;
  flex-direction: column;
  padding: 0.3em;
}

.nav-sidebar-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2em;
}

.hamburger-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  margin: 0.2em;
}

.hamburger-bar, .hamburger-bar::before, .hamburger-bar::after {
  width: 2em;
  height: 0.1em;
  background-color: rgb(0, 250, 0);
  border-radius: 0.1em;
}

.hamburger-bar {
  position: relative;
}

.hamburger-bar::before {
  width: 100%;
  height: 0.1em;
  content: "";
  position: absolute;
  top: -0.5em;
}

.hamburger-bar::after {
  width: 100%;
  height: 0.1em;
  content: "";
  position: absolute;
  top: 0.5em;
}

.body-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: max(8%, 5em);
  padding-bottom: max(8%, 5em);
}

.body-content {
  max-width: 90%;
  height: max-content;
  background-color: rgb(80, 80, 80);
  border: 2px solid rgb(120, 120, 120);
  border-radius: 0.2em;
  box-shadow: 0px 4px 13px rgba(0,0,0,0.25);
  padding: max(2%, 0.2em);
  box-sizing: border-box;
}

.body-actions {
  width: 100%;
  min-height: 3em;
  display: flex;
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.horizontal-buttons a, .horizontal-buttons button {
  display: block;
  text-decoration: none;
  color: rgb(35, 55, 35);
  font-weight: 600;
  transition: color 0.3s;
  background-color: rgb(21, 122, 21);
  border: 1px solid rgb(0, 180, 0);
  box-shadow: -2px 2px 5px rgba(0,0,0,0.55);
  text-shadow: 0px 1px 0px rgba(0,30,0,0.55);
  padding: max(5%, 0.5em);
  border-radius: 0.3em;
  font-size: large;
}

.horizontal-buttons a:hover, .horizontal-buttons button:hover  {
  background-color: rgb(0, 185, 0);
}

.horizontal-buttons {
  padding: 0;
  display: flex;
  list-style: none;
  gap: 3rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
}

.form-section label {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 500;
  color: rgb(180, 180, 180);
}

.form-section input {
  display: block;
  width: min(max(300px, 30em), 90%);
  box-sizing: border-box;
}

.form-section textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
