/* Ensure that the menu dropdown doesn't interfere with the wrapper's layout */
.theme-dropdown {
  position: relative;  /* Make the button's parent relative to position the menu */
}

/* Menu Styling */
.menu {
  display: none;  /* Initially hidden */
  position: absolute;
  top: 100%; /* Position it below the button */
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 160px;
  margin-top: 5px;  /* Adjust the distance between button and menu */
}

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

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