html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

/* Shared app footer — light bar, HPE logo + legal links (_Footer.cshtml) */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e8eb;
  color: #212121;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  padding: 1.75rem 1.5rem 2rem;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.hpe-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.hpe-logo-rect {
  display: block;
  width: 52px;
  height: 24px;
  border: 2px solid #01a982;
  border-radius: 2px;
  box-sizing: border-box;
}

.hpe-logo-wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #212121;
  line-height: 1.45;
  max-width: 26rem;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.8125rem;
}

.site-footer-legal a {
  color: #212121;
  text-decoration: none;
}

.site-footer-legal a:hover {
  color: #000000;
  text-decoration: underline;
}

.site-footer-sep {
  color: #616161;
  opacity: 0.9;
  user-select: none;
}

@media (max-width: 640px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer-brand {
    align-items: center;
  }

  .hpe-logo {
    align-items: center;
  }

  .site-footer-legal {
    justify-content: center;
  }
}
