body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto';
  text-decoration: none;
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  left: 0;
  z-index: 1;
}

.header-navigation {
  padding: 32px 100px;
  display: flex;
}

.logo {
  color: #131313;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.15px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 44px;
  cursor: pointer;
}

.logo-image {
  width: 24px;
  height: 24px;
}

.navigation-list {
  display: flex;
  gap: 24px;
  padding: 0px;
  margin: 0px;
}

.navigation-list li {
  display: inline-flex;
  align-items: center;
}

.navigation-list li a {
  color: #131313;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.15px;
}

.navigation-list li a.active {
  color: #2cb251;
}

.more-options-container {
  position: relative;
}

.more-options-toggle {
  display: flex;
  cursor: pointer;
}

.more-options-toggle-icon {
  width: 20px;
}

#more-options-opened-icon {
  display: none;
}

.more-options {
  position: absolute;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 16px;
  top: 40px;
  display: none;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  z-index: 1;
  min-width: 160px;
}

.live-navigation-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navigation-menu-toggle {
  display: none;
}

.navigation-menu-toggle img {
  cursor: pointer;
}

#menu-opened-icon {
  display: none;
}

.square-container {
  display: flex;
  padding: 0px 180px;
}

.square {
  width: 60px;
  height: 60px;
  border: 1px solid #ebebeb;
}

.footer-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 20px 0px;
  gap: 16px 24px;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.15px;
  color: #cccccc;
  text-decoration: none;
}

.footer-items a, .footer-items a:visited {
  text-decoration: none;
  color: inherit;
}

.system-status-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.circle {
  width: 8px;
  height: 8px;
  background-color: #2cb251; /* brand green */
  border-radius: 50%;
}

.system-status {
  color: #000000; /* match body text color */
}

@media (max-width: 768px) {
  .header-navigation {
    padding: 32px 35px;
  }

  .square {
    width: 40px;
    height: 40px;
  }

  .square-container {
    padding: 0px 90px;
  }
}

@media (max-width: 576px) {
  .header-navigation {
    padding: 18px 20px;
    display: flex;
    position: relative; /* ensure absolute children position relative to nav */
  }

  .navigation-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* vertically center alongside logo */
  }

  #menu-opened-icon {
    position: relative;
    bottom: 3px;
  }

  .navigation-list {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 68px;
    left: -100%;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    gap: 0px;
    background-color: #fff;
  }

  .navigation-list li {
    border-top: 1px solid rgba(0, 26, 51, 0.1);
    padding: 24px;
    font-size: 22px;
  }

  .navigation-list li a {
    font-size: 22px;
  }

  .more-options-toggle-icon {
    width: 22px;
  }

  .more-options {
    top: 65px;
    min-width: 160px;
  }

  .more-options li {
    border: none;
    padding: 0px;
  }

  .square-container {
    padding: 0px 30px;
  }

  .square {
    width: 30px;
    height: 30px;
  }

  .footer-items {
    padding: 0px 20px;
    flex-wrap: wrap;
  }

  .system-status-container {
    width: 100%;
  }

  .footer-items :nth-child(1) {
    order: 1;
  }

  .footer-items :nth-child(2) {
    order: 1;
  }

  .footer-items :nth-child(3) {
    order: 1;
  }

  .footer-items :nth-child(4) {
    order: 0;
  }
}

/* Site-wide maintenance alert banner - COMMENTED OUT FOR FUTURE USE */
/*
header::before {
  content: "Account creation is temporarily unavailable for critical maintenance";
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px 10px 40px; /* extra left space for icon */
  text-align: center;
  background-color: #fff3cd; /* soft amber */
  color: #7a5900; /* dark amber text */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237a5900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 9v4'/><path d='M12 17h.01'/><circle cx='12' cy='12' r='10'/></svg>");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 18px 18px;
}

@media (max-width: 576px) {
  header::before {
    font-size: 13px;
    padding: 8px 12px 8px 36px;
    background-size: 16px 16px;
    background-position: 12px center;
  }
}
*/
