:host {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

:host(:last-child) {
  border-bottom: 0;
}

.menu-item {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  font-size: var(--as-menu-item-font-size, 14px);
  color: rgba(0, 0, 0, 0.67);
  padding-top: var(--as-menu-item-padding-y, 10px);
  padding-bottom: var(--as-menu-item-padding-y, 10px);
  white-space: nowrap;
}

.menu-item:hover {
  color: black;
  cursor: pointer;
}

.menu-item.is-disabled {
  opacity: 0.43;
  pointer-events: none;
}