.floatingButton {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 150px;
  height: 75px;

  border: none;
  cursor: move;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  filter: invert(100%) !important;
}

@media only screen and (max-width: 768px) {
  .floatingButton {
    width: 40dvw;
    height: 20dvh;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    background-color: #007bff;
    color: white;
    font-size: 24px;
  }
}

/* Hidden Class (To Hide Menu Initially) */
.hidden {
  display: none;
}

/* Popup Menu Styling */
#menu {
  position: absolute;
  width: 200px; /* Fixed width */
  height: auto; /* Ensures it doesn't shrink */
  min-height: 100px; /* Prevents collapsing */
  left: 0;
  top: 0;
  background: #00c25d;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
  z-index: 9999; /* Ensures it appears ABOVE other content */
  overflow: hidden;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu ul li {
  padding: 10px;
  cursor: pointer;
  /*border-bottom: 1px solid #ddd;*/
  text-align: center;
}

#menu ul li:last-child {
  border-bottom: none;
}

/* Hover Effect */
#menu ul li:hover {
  background-color: #ff7f00;
  color: #4c0099;
}
