.controls{
    margin-top: 10px;
}
.user-dropdown {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1;
  justify-self: end;
  padding: 6px 16px;
  border-radius: 6px;
  background-color: #f3f3f5;
  margin: 0;
  display: inline-block;
  min-width: 180px;
}

.user-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.user-dropdown summary::-webkit-details-marker {
  display: none;
}

.user-dropdown .dropdown-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background-color: #f3f3f5;
  border-radius: 6px;
  z-index: 9999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 10px;
  min-width: 180px;
}

.user-dropdown[open] .dropdown-panel {
  display: block;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  background-color: #fff;
}