@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Light.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Bold.woff2") format("woff2");
  font-weight: bold;
}
@font-face {
  font-family: "Material Icons";
  src: url("../fonts/MaterialSymbolsRounded-Regular.ttf");
  font-weight: normal;
}
.icon {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

body {
  height: 100vh;
  margin: 0rem;
  font-family: "Lexend";
  font-size: 1.125rem;
}
body .navigation-bar {
  height: 5rem;
  background-color: rgb(23, 42, 60);
  color: #ffffff;
  padding: 0rem 2rem;
  display: flex;
  flex-direction: row;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
}
body .navigation-bar .navigation-menu-icon {
  font-size: 2.25rem;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  body .navigation-bar {
    padding: 0rem 1rem;
  }
}
body .contentContainer {
  height: calc(100vh - 5rem);
}
body .contentContainer .standard-content {
  margin: 1rem auto;
  width: 72rem;
  max-width: 95%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .navigation-menu-overlay {
  position: absolute;
  top: 5rem;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
}
body .navigation-menu-overlay:has(.navigation-menu.expanded) {
  display: flex;
}
body .navigation-menu-overlay .navigation-menu {
  overflow: hidden;
  width: 0rem;
  height: 100vh;
  z-index: 1000;
}
body .navigation-menu-overlay .navigation-menu.expanded {
  width: 24rem;
  max-width: 80%;
  background-color: #ffffff;
  display: flex;
  opacity: 1;
  flex-direction: column;
}
body .navigation-menu-overlay .navigation-menu.expanded a {
  font-size: 1.25rem;
  padding: 0.5rem 1.25rem;
  border-top: solid 1px #3a3a3a;
}
body .navigation-menu-overlay .navigation-menu.expanded .navigation-menu-icon {
  font-size: 2rem;
  padding: 0.5rem 1.25rem;
}
body .navigation-menu-overlay .navigation-menu#profile-menu {
  margin-left: auto;
}
body .navigation-menu-overlay .navigation-menu-background {
  background-color: #3a3a3a;
  opacity: 0.5;
  z-index: 999;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

a.button {
  max-width: 23rem;
}

.button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  min-height: 3rem;
  line-height: 3rem;
  max-height: 3rem;
  cursor: pointer;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  max-width: 26rem;
  font-size: 1.125rem;
}
.button.button-primary {
  border: none;
  background-color: rgb(23, 42, 60);
  color: #ffffff;
  transition: all 0.5s ease;
}
.button.button-primary:hover {
  background-color: rgb(23, 42, 60);
}
.button.button-secondary {
  background-color: #ffffff;
  border: 1px solid rgb(23, 42, 60);
  color: rgb(23, 42, 60);
}
.button.button-caution {
  background-color: #ffffff;
  border: 1px solid #bb1615;
  color: #bb1615;
}

input[type=text], input[type=password], input[type=date], textarea {
  border: 1px solid #a3a3a3;
  border-radius: 0.25rem;
  padding: 0.625rem 1rem;
  font-family: "Lexend";
  font-size: 1.125rem;
  line-height: 1.75rem;
  max-width: 24rem;
}
input[type=text].input-validation-error, input[type=password].input-validation-error, input[type=date].input-validation-error, textarea.input-validation-error {
  border-color: #bb1615 !important;
}

select {
  border: 1px solid #a3a3a3;
  border-radius: 0.25rem;
  padding: 0.625rem 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  max-width: 26.125rem;
  background-color: #ffffff;
  min-height: 3.125rem;
  max-height: 3.125rem;
}

.flex-table {
  display: flex;
}
.flex-table.flex-table-column {
  flex-direction: column;
}
.flex-table.flex-table-row {
  flex-direction: row;
}
.flex-table .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-table .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: solid 1px #3a3a3a;
}
.flex-table .gap-medium, .flex-table.gap-medium {
  gap: 1rem;
}

#modal-container {
  display: none;
}
#modal-container:has(.modal-content) {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
}
#modal-container:has(.modal-content) .modal-content {
  background: #ffffff;
  margin: 1rem auto;
  width: 52rem;
  max-width: 90%;
  padding: 1rem 0rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
#modal-container:has(.modal-content) .modal-content .close-row {
  display: flex;
  flex-direction: row-reverse;
  padding: 0rem 1rem;
}
#modal-container:has(.modal-content) .modal-content .close-row .icon {
  font-size: 2rem;
  cursor: pointer;
}

.field-validation-error {
  color: #bb1615 !important;
  font-size: 1rem;
}