:root {
  --footer-h: 140px;
  --footer-safe: env(safe-area-inset-bottom, 0px);
}

/* Version display styling */
#version-display {
  opacity: 0.7;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Help section spacing */
#cacheHelpAccordion {
  margin-bottom: 2rem;
}

/* Ensure content doesn't get hidden behind footer */
.container {
  padding-bottom: 1rem;
}

body {
  padding-bottom: calc(var(--footer-h) + var(--footer-safe));
}

/* Optional: for in-page anchor jumps so they don't land under the footer */

html {
  scroll-padding-bottom: calc(var(--footer-h) + var(--footer-safe));
}

