.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin-right: 20px;
  font-size: 14px;
}

.navbar a:hover {
  color: #007bff;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right .button {
  background: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.nav-right .button:hover {
  background: #0056b3;
}

.highlight {
  font-weight: bold;
}
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-content a {
  display: block;
  padding: 8px;
  color: #333;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

.show {
  display: block;
}