/* Add spacing between navbar links */
.navbar-nav .nav-item {
  margin: 0 12px;   /* Adjust the number for more/less spacing */
}

/* Optional: Add spacing inside the links */
.navbar-nav .nav-link {
  padding: 8px 14px;
}
a.nav-link.custom-nav[href="#niphm"] {
  color: yellow !important;
  font-weight: bold !important;
  font-size: larger;
}
/* Navbar background */
.custom-navbar {
  background-color: #004d40;
}

.custom-navbar {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* Link styling */
.custom-nav {
  color: white !important;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: large;
  padding: 6px 10px !important;
  text-align: center;
  white-space: nowrap;
  max-width: 100vw;
}

/* Hover effect */
.custom-nav:hover {
  background-color:  rgba(180, 102, 13, 0.808); 
}

/* Dropdown menu */
.custom-dropdown {
  background-color: rgba(180, 102, 13, 0.808);
  border: none;
  padding: 0;
  min-width: 220px;
  line-height: 0.4;
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
  padding: 12px;
  color: white;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size:large;
  line-height: 0.15;
}

/* Hover for dropdown item */
.custom-dropdown .dropdown-item:hover {
  background-color: rgb(109, 63, 3);
}

/* Nav alignment */
.navbar-nav {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

/* Responsive for mobile */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .custom-dropdown {
    position: static;
    width: 100%;
  }
}
.custom-navbar {
  background-color: #004d40;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  width: 100%; /* ensures full width */
}
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .custom-dropdown {
    position: static;
    width: 100%;
  }
}
.highlight-yellow {
  color: yellow;
  font-weight: 600;
}
.list-unstyled li::before {
  content: "•";  /* or "\2713" for tick */
  color: #924518; /* your theme color */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
body {
  padding-top: 40px; /* adjust this value to match your navbar height */
}
.custom-navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Make navbar sticky */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;   /* keeps it above other elements */
}
