.primaryBtn {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #0145b2;
  color: #0145b2;
  text-decoration: none;
  border-radius: 4px;
  background-color: rgb(245, 247, 250);
}

.primaryBtn:hover {
  background-color: #0145b2;
  color: white;
}

.primaryBtn .active {
  background-color: #0145b2;
  color: white;
  border: none;
}

.primaryBtn .disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.primaryBtnHidden {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #0145b2;
  color: #0145b2;
  text-decoration: none;
  border-radius: 4px;
  background-color: rgb(245, 247, 250);
  font-size: 14px;
  visibility: hidden;
}
