.navbar-desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  display: none;
}

.nav-links .btn {
  margin-left: 8px;
}

.navbar-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: white;
  padding: 10px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-btn {
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 6px;
}

.mobile-menu {
  position: absolute;
  top: 60px;
  right: 10px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.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 #ddd;
  z-index: 999;
}

.footer-nav div {
  text-align: center;
  font-size: 12px;
}

.add-btn {
  background: #0d6efd;
  width: 55px;
  height: 55px;
  color: white;
  border-radius: 50%;
  margin-top: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

.modal-box {
  position: fixed;
  inset: 0;
  z-index: 1600;
  margin: auto;
  width: 90%;
  max-width: 320px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: none;
}

.navbar-desktop .btn {
  border: none;
  background-color: transparent;
  box-shadow: none !important; /* Remove Bootstrap's default shadow on focus */
  color: #333; /* Set a default text color so it's visible */
}

@media (min-width: 768px) {
  .navbar-desktop {
    display: flex;
  }
  .navbar-mobile {
    display: none;
  }
  .footer-nav {
    display: none !important;
  }
}