
.dropdown {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem; 
  width: 3rem;

  &.open > .dropdown-toggle {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}

.dropdown-toggle {
  display: block;
  width: 100%;
  background-color: var(--button);
  color: var(--text-light);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.dropdown-toggle:hover {
  background-color: var(--button-light);
}

.dropdown-menu {
  z-index: 10;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  border-radius: var(--radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu > * {
  width: 6rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 1px solid var(--separator);
  box-sizing: border-box;
}

.dropdown-menu > *:first-child {
  border-top-left-radius: var(--radius);
}

.dropdown-menu > *:last-child {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
