.navbar{
    padding: 10px 0px;
}

.nav_link{
    display: flex;
    gap: 40px;
    position: relative;

}

.nav_link a{
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: var(--primary);
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 150px; /* Fixed width for better mobile appearance */
}

.dropbtn:hover{
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.dropbtn span{
    padding-right: 10px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}

/* Mobile-friendly styles */
@media screen and (max-width: 600px) {
  .dropdown {
    width: 100%;
    
  }
  .dropbtn {
    width: 100%;
    background: white;
    color: var(--primary);
  }
  .dropdown-content {
    width: 100%;
    position: relative;
  }

  .dropdown-content a{
    color: var(--primary) !important;
  }
}