.has-site-filing {
  padding-bottom: max(34px, env(safe-area-inset-bottom));
}

.site-filing-footer {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: max(5px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: calc(100vw - 32px);
  font-size: 12px;
  line-height: 1;
}

.site-filing-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  color: #365f62;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 5px 16px rgba(18, 73, 92, 0.12);
  backdrop-filter: blur(10px);
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.site-filing-footer a:hover,
.site-filing-footer a:focus-visible {
  color: #0b735e;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 20px rgba(18, 73, 92, 0.18);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-filing-footer a {
    transition: none;
  }
}
