@use "../variables";
@use "../mixins";

.nuitral-button {
  @include mixins.apply-radius-atoms();
  display: flex;
  align-items: center;
  cursor: pointer;
  height: variables.$height-atoms;
  overflow: hidden;
  padding: 8px 16px;
  box-sizing: border-box;
  gap: 4px;
  backface-visibility: hidden;
  border-style: none;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  transition: variables.$transitions-global;
}
