.footer-links {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: 14px;

  font-family: Arial;
  font-size: 13px;

  z-index: 9999;
}

.footer-links a {
  color: #7a6a4a;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.footer-links .separator {
  color: #7a6a4a;
  opacity: 0.6;
}

/* Optional: etwas größer auf Mobile */
@media (max-width: 600px) {
  .footer-links {
    font-size: 16px;
    padding: 6px 16px;
  }
}

.page {
    font-family: Arial;
    margin: 40 40 40 40;
    font-size: 11px;
}