body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

header {
  background: #304e61;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

/*.logo::before {*/
/*  content: "ðŸŒ¿";*/
/*  font-size: 28px;*/  
/*}*/

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

.search-box input {
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 16px;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #304e61;
  color: white;
  text-align: center;
  padding: 12px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}

@media (max-width: 768px) {
  .mobile-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0;
  }

  .menu-btn {
    display: block;
    order: 1;
    background: none;  /* no background for button */
    border: none;
    color: white;
  }

  .search-box {
    flex: 1;
    margin-right: 10px;
  }

  .search-box input {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    /*background: #357a38;*/
    margin-top: 10px;
    padding: 10px 0;
    text-align: left;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: none;                        /* remove green background */
    color: white;
    -webkit-tap-highlight-color: transparent; /* remove mobile tap highlight */
  }
}


/* Reserve space at bottom for fixed footer */
.container {
    padding-bottom: 80px; /* match or slightly exceed footer height */
}

/* Ensure footer stays on top of content */
.footer {
    z-index: 1000;  /* make sure it overlaps content visually */
}





.nav-user-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
}

.nav-user-info span {
    font-size: 12px;
    color: yellowgreen;
}
.nav-user-info .expired {
    color: red;
}