#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;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #006ae1;
  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);
  }
}
h1 {
  color: #29265f;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 10px;
  padding: 20px;
  text-transform: uppercase;
  font-size: 24px;
  border-left: 0px solid;
  text-align: center;
}

h2 {
  color: #29265f;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 10px;
  padding: 20px;
  text-transform: uppercase;
  font-size: 20px;
  border-bottom: 1.5px solid #29265f;
}

form {
  margin: 0;
}

.landingSection {
  margin-top: 20px;
}

#content a.landingLinks {
  align-items: center;
  background: #29265f;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 0 #919d9d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  margin: 20px 0;
  padding: 25px;
  font-size: 22px;
  font-family: "MyriadPro", sans-serif;
  letter-spacing: 1px;
  line-height: 1.25em;
  text-decoration: none;
}
#content a.landingLinks:hover {
  background: rgb(44.1443609023, 40.9142857143, 102.2857142857);
  box-shadow: 7px 7px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
#content a.landingLinks:active {
  background: rgb(16.2, 95.8, 255);
  box-shadow: 3px 3px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}
#content a.landingLinks p.smaller {
  font-size: 14px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.25em;
}
#content a {
  color: #0659ff;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(31.5, 106, 255);
  text-decoration: underline;
}

#member-lookup-content ul {
  padding-left: 30px;
}
#member-lookup-content p {
  padding-left: 20px;
}
#member-lookup-content form {
  padding: 0 15px;
  margin-bottom: 0px;
}
#member-lookup-content form label {
  padding-left: 5px;
  color: #000000;
}

/* buttons */
input[type=button],
input[type=submit],
input[type=reset],
button,
.button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  align-items: center;
  background: #0659ff;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 0 #919d9d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background: rgb(16.2, 95.8, 255);
  box-shadow: 7px 7px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
button:active,
.button:active {
  background: rgb(16.2, 95.8, 255);
  box-shadow: 3px 3px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}

.error,
#errorMsg {
  color: #cc0000;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}

#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;
}
