:host {
  display: inline-block;
  position: relative;
  height: 3.6rem;
  width: 100%;
  cursor: pointer;
}
:host > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 0;
  border-radius: 0.3rem;
  color: white;
  background-color: var(--highlight-color, orange);
  padding: 0 1.5rem;
}
:host > div:hover {
  background-color: var(--highlight-color-hover, #f09b00);
}

:host(.disabled) {
  cursor: not-allowed;
  opacity: 0.4;
}
:host(.disabled) > div:hover {
  background-color: var(--highlight-color, orange);
}