/* Ensure dropdown is hidden by default */
.Tg1gOB ul {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Show dropdown on hover */
.Tg1gOB:hover ul {
  display: block;
}

/* Style dropdown items */
.Tg1gOB ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.Tg1gOB ul li:hover {
  background: #f0f0f0;
}

/* Ensure parent is positioned properly */
.Tg1gOB {
  position: relative;
  cursor: pointer;
}
