body {
  background: #e2ebf0;
}

.round-button {
  background-color: #fdbb10;
  padding: .5rem 4rem;
  font-size: 1rem;
  text-align: center;
  border: 3px solid #003f5b;
  border-radius: 50px;
  cursor: pointer;
}

/* Boldify on hover (using text shadow so that bolding doesnt change the size of text) */
.round-button:hover, .round-button:focus {
  text-shadow: 1px 0px 0px black;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  background-color: #fdbb10;
  max-width: 75%;
  text-align: right;
  border: 1px solid #003f5b;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  transform: translateX(-50%);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 6px 8px;
  font-size: .75rem;
  text-decoration: none;
  display: block;
}

/* Boldify on hover (using text shadow so that bolding doesnt change the size of text) */
.dropdown-content a:hover {
  text-shadow: 1px 0px 0px black;
}

.content {
  font-size: 1rem;
  width: 70%;
  position: relative;
}

.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.titlebar-logo {
  flex: 7.5%;
  height: auto;
}

.titlebar-title {
  flex: 90%;
}

.titlebar-return-link {
  flex: 5%;
  color: inherit;
  text-decoration: none;
}

th {
  width: 10%;
}
tr {
  text-align: center;
}

.form {
  border: 2px solid var(--neutraldark);
  text-align: left;
}

.form-note-text {
  font-size: 1rem;
  margin: 1rem 0;
  color: var(--shadedarkblue);
}

.form-input:invalid {
  border: 4px dashed var(--shadedarkred);
}

.form-input {
  border: 2px solid var(--neutraldark);
}

.form-header {
  margin: 0 .5rem;
}

.container {
  width: 90%;
  position: relative;
  display: flex;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.vertical {
  flex-direction: column;
}

.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.no-margin {
  margin: 0;
}

.clickable {
  cursor: pointer;
  user-select: none;
}

.add-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.radio-label {
  font-size: 1rem;
  user-select: none;
}

.radio-button {
  width: .75rem;
  height: .75rem;
}
