/* Style the button */
.dropbtn {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Style the button icon */
.dropbtn i {
  margin-left: 5px;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 1;
  padding: 10px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

/* Images inside the dropdown */
.dropdown-content img {
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Show the dropdown menu on click */
.dropdown.show .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown.show .dropbtn {
  background-color: #444;
}
