.menu-bar {
  display: flex;
  align-items: center;
  justify-content: center; /* This centers the logo */
  position: relative;
}
#menuIcon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 28px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#menuIcon span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}

#dropdownMenu {
  display: none;
  position: fixed; /* changed from absolute */
  top: 60px;
  right: 20px;
  background-color: #2c2c2c;
  border-radius: 10px;
  padding: 20px;
  z-index: 999;
  width: 220px;
  font-family: Arial, sans-serif;
}

#dropdownMenu.show {
  display: block;
}
#dropdownMenu a {
  display: block;
  color: white;
  background-color: transparent;
  border: 2px solid #ff0000;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#dropdownMenu a:hover {
  background-color: #ff0000;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transform: scale(1.03);
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 600px) {
  #menuIcon {
    width: 40px;
    height: 30px;
    top: 15px;
    right: 15px;
  }

  #menuIcon span {
    height: 3px;
  }

  #dropdownMenu {
    top: 55px;
    right: 10px;
    width: 80%;
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
    border-radius: 10px;
  }

  #dropdownMenu a {
    font-size: 14px;
    padding: 10px 0;
    margin: 6px 0;
    border-radius: 6px;
  }

  .menu-logo {
    width: 160px !important;
  }
}
