.moj-ucet-button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 85px;   /* veľkosť celej plochy – nastaviteľné */
  height: 85px;
  transition: border-color 0.3s, transform 0.3s;
}

.moj-ucet-button:hover {
  border-color: #fff700; /* svetlejšia zlatá pri hoveri */
  transform: scale(1.1);
}

.moj-ucet-icon {
  width: 60px;   /* veľkosť samotnej ikonky */
  height: auto;
  display: block;
}