.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #ccc;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

.footer-nav::-webkit-scrollbar {
  display: none;                   /* Chrome/Safari */
}

.footer-nav a {
  flex: 0 0 auto;                  /* ⬅️ penting: jangan biarkan menyempit */
  width: 25%;                      /* ⬅️ tepat 25%, total 4 tombol */
  text-align: center;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.2;
  white-space: nowrap;
  box-sizing: border-box;
}

.footer-nav a:hover,
.footer-nav a.active {
  background-color: #e2e6ea;
  color: #007bff;
}

/* Hindari footer menindih konten */
main, .container {
  margin-bottom: 70px;
}

.footer-nav::-webkit-scrollbar {
  display: none;               /* Chrome/Safari */
}

.footer-nav a {
  flex: 1 0 25%;               /* Ambil 25% dari lebar layar */
  min-width: 25%;              /* Pastikan cukup tampil */
  text-align: center;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  padding: 4px;
  line-height: 1.2;
  white-space: nowrap;         /* Hindari teks pindah baris */
  box-sizing: border-box;
  transition: background-color 0.2s;
}

.footer-nav a .icon {
  font-size: 20px;
  display: block;
  line-height: 1;
}

.footer-nav a .label {
  margin-top: 2px;
  display: block;
}

.footer-nav a.active,
.footer-nav a:hover {
  background-color: #e2e6ea;
  color: #007bff;
}

/* Untuk memberi ruang ke bawah agar konten tidak tertimpa */
main, .container {
  margin-bottom: 70px;
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .footer-nav a {
    font-size: 12px;
    padding: 4px 2px;
  }
}
/* Pastikan ini ada di footer.css atau main.css */
.footer-nav.hidden {
  transform: translateY(100%);
}

