/* =====================================
   AbataBlaster PWA Bottom Toolbar CSS
   (Converted from WP Snippet)
   ===================================== */

/* ✅ Bagi ruang bawah supaya content tak kena tindih toolbar */
body {
  padding-bottom: 64px;
}

/* 🔽 Bottom Toolbar */
.ab-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #0f172a;
  border-top: 1px solid rgba(22, 163, 74, 0.35);
  padding: 6px 4px 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 🔗 Item */
.ab-bottom-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 11px;
}

/* 🔘 Icon */
.ab-bottom-nav a .icon {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

/* ✅ Active state */
.ab-bottom-nav a.active {
  color: #4ade80;
  font-weight: 600;
}