.button:global(.button-reset) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: var(--font-ui);
  padding: 1.1em 1.5em 1em;
  min-width: 7rem;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 40em) {
  .button:global(.button-reset)[data-responsive="true"] {
    display: flex;
    width: 100%;
  }
}

/* Sizes */
.button[data-size=''] {
}

/* Themes */
.button[data-theme=''] {
}

/* States */
.button[data-busy='true'] {
  opacity: 0.5;
  pointer-events: none;
}

.button[disabled] {
  pointer-events: none;
  background: lightGrey !important;
  color: darkGrey !important;
}
