.btn {
  min-height: 40px;
  text-decoration: none;
  background-color: var(--white);
  border-radius: 8px;
  color: var(--text-dark);
  border: 3px solid var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  cursor: pointer;
  width: max-content;
  transition: all 0.2s ease;
}

.btn:hover,
.btn:focus {
  filter: brightness(95%);
  outline: none;
}

.btn:active {
  transform: scale(95%);
}

.btn:disabled {
  background-color: var(--browser-bar) !important;
}

.btn.primary {
  border: none;
  background: var(--primary);
}

.btn.padding {
  padding: 0 25px;
}
