#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #ed601a;
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
form {
  margin: 0;
}

#logoutForm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 15px 0;
}

#members-table {
  width: 100%;
  border-collapse: collapse;
}
#members-table .member-row:hover {
  background: yellow;
  cursor: pointer;
}

#member-table {
  width: 100%;
  border-collapse: collapse;
}

#submit-exhibitor {
  margin-top: 15px;
}

#member-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

h1 {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 10px;
  padding: 20px;
  text-transform: uppercase;
  font-size: 28px;
}

h2 {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 10px;
  padding: 20px;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
}

ul {
  list-style-position: inside;
}

hr {
  margin: 0 !important;
}

input[type=button],
input[type=submit],
input[type=reset],
button {
  margin: 10px 0;
  max-width: fit-content;
  padding: 1rem;
  background-color: #ed601a;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: arial, helvetica, sans-serif;
  box-shadow: 5px 5px 3px #919d9d;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover {
  background-color: rgb(238.8582995951, 112.4149797571, 49.6417004049);
  box-shadow: 7px 7px 3px #919d9d;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
button:active {
  background-color: rgb(238.8582995951, 112.4149797571, 49.6417004049);
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}

#content {
  padding: 20px;
  background-color: #ffffff;
  margin: 0 auto;
  text-align: left;
  border: 1px solid #dbdbdb;
  box-shadow: 0 1px 3px #dddddd;
  border-radius: 4px;
}
#content a {
  color: #ed601a;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(238.8582995951, 112.4149797571, 49.6417004049);
}
#content a.landingLinks {
  background-color: #ed601a;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: arial, helvetica, sans-serif;
  box-shadow: 5px 5px 3px #919d9d;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  margin: 10px auto;
  max-width: 80%;
  padding: 40px;
}
#content a.landingLinks:hover {
  background-color: rgb(238.8582995951, 112.4149797571, 49.6417004049);
  box-shadow: 7px 7px 3px #919d9d;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
#content a.landingLinks:active {
  background-color: rgb(238.8582995951, 112.4149797571, 49.6417004049);
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}
#content .border-right {
  border-right: 1px solid #cecece;
}
#content .input-feedback {
  color: #cc0000;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
}

.no-padding {
  padding: 0;
}

#errorMsg {
  color: #cc0000;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  margin: 2rem;
}

.disabled {
  background-color: #cecece !important;
}
