/* GENERELLE KNAPPER */

.btn-base {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background: #2a2a2a;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.btn-base:hover {
  background: #3a3a3a;
}

/* IKON KNAPPER */
.btn-icon {
  font-size: 16px;
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}