.menu a {
    text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-toggle:hover {
    background: var(--accent);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1d26;
  border: 1px solid #333;
  border-radius: 5px;
  min-width: 160px;
  display: none;
  z-index: 1000;
}

.dropdown-item {
  padding: 10px;
  color: #fff;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #2a2f3a;
}

.dropdown-item a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.menu-btn {
  padding: 10px 15px;
  font-size: 18px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: #0056b3;
}

.tooltip-box {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.tooltip-box.visible {
  opacity: 1;
}