.btn,
.round-btn {
  border: 0;
  cursor: pointer;
  font-weight: 850;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.btn {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 12px;
}

.btn:active,
.round-btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(36, 87, 214, .22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.btn-secondary:hover,
.btn-muted:hover {
  background: #dbe7ff;
}

.btn-muted {
  background: #eef4ff;
  color: #244477;
}

.full-width {
  width: 100%;
}

.round-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.button-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
