body {
      font-family: 'Poppins', sans-serif;
    }

    .top-bar {
  background: #f8f9fa;
  font-size: 14px;
  padding: 5px 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 42px;
  z-index: 1050; /* Make sure it's above everything else except maybe modals */
}

body {
  padding-top: 40px; /* Adjust this based on your top-bar + navbar height */
}

    .top-bar a {
      color: #333;
      text-decoration: none;
      margin-left: 10px;
    }

    .navbar-custom {
      height: 120px;
      width: 100%;
      font-size: 18px;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ← add this */
  z-index: 1030;
  position: fixed;
    }

    .navbar-custom .nav-link {
      margin: 0 10px;
      color: #222;
    }

    .navbar-brand span {
      color: #20b883;
      font-weight: 600;
    }

    .google-play-btn {
      height: 50px;
    }

    @media (max-width: 767.98px) {
      .navbar-custom {
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
      }

      .google-play-btn {
        height: 40px;
        margin-top: 10px;
      }
    }

    .mobile-bottom-nav {
  z-index: 1050;
  font-size: 14px;
  border-radius: 20px 20px 0 0;
}

.mobile-bottom-nav a {
  flex-grow: 1;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
}

.mobile-bottom-nav a:hover {
  color: #20b883;
}



/* mobile sidebar  */



.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-sidebar .sidebar-header {
  border-bottom: 1px solid #ddd;
}

.mobile-sidebar .card-header button {
  font-weight: 600;
  color: #000;
}
