.user-account-menu {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  background: #ffffff;
  padding: 4px 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
}

/* base item */
.menu-item {
  display: block;
  width: 100%;
  padding: .25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;

}

/* hover underline like screenshot */
.menu-item:hover {
  text-decoration: underline;
  color: #0000007d;
}

/* active route (Casino Results in screenshot) */
.menu-item-active {
  text-decoration: underline;
  color: #777777;
}

/* SignOut separated at bottom */
.sign-out {
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
  padding-top: 12px;
  font: inherit;
}

/* remove default button styles */
button.menu-item {
  font: inherit;
  margin: 0;
}

/* keep focus from changing color */
button.menu-item:focus,
a.menu-item:focus {
  color: #000000;
  outline: none;
}

/* mobile-only stuff (if you still need it) */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
    align-items: center;
    gap: 50px;
  }
}

.mobile-visible {
  display: none;
}

@media (max-width: 768px) {
  .mobile-visible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
}