/* Static select dropdown component. */
.mh-static-select {
  min-width: 0;
  position: relative;
}

.mh-static-select-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 60;
  margin-top: 0.25rem;
  max-height: 18rem;
  min-width: 100%;
  width: auto;
  overflow: auto;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--popover));
  padding: 0.25rem;
  color: hsl(var(--popover-foreground));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.mh-static-select-option {
  display: flex;
  width: 100%;
  min-height: 2rem;
  align-items: center;
  border-radius: calc(var(--radius) - 4px);
  padding: 0.375rem 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: normal;
  cursor: pointer;
}

.mh-static-select-option:hover,
.mh-static-select-option[data-active="true"] {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  outline: none;
}

.mh-static-select-option[aria-selected="true"] {
  font-weight: 600;
}
