@use '../../scss/palette' as palette;

.badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 1.375rem;
  height: 1.375rem;
  border-radius: 1rem;
  padding: 0 0.375rem;
  color: palette.$white;
  background-color: palette.$black;
  border: 1px solid;

  &--blueberry {
    background-color: palette.$blueberry500;
    border-color: palette.$blueberry600;
  }

  &--cherry {
    background-color: palette.$cherry500;
    border-color: palette.$cherry600;
  }

  &--neutral {
    color: palette.$black;
    background-color: transparent;
    border-color: palette.$neutral600;
  }
}
