
/* assets/css/bottomnav.css */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 1040;
  display: flex;
  justify-content: space-around;
  padding: 8px 6px env(safe-area-inset-bottom);
}
.bottom-nav a, .bottom-nav button {
  color: #ddd;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bottom-nav .label { font-size: 11px; }
.bottom-nav .active { color: #fff; }

/* Ensure content isn't hidden behind the fixed bar */
body { padding-bottom: 100px; }

footer {
  margin-bottom: 80px; /* un poco más alto que la bottom-nav */
}

