.bv-like-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .8rem;
  border-radius: .5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e0e0e0;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}

.bv-like-button .icon { font-size: 1rem; }
.bv-like-button .label { font-size: .95rem; }
.bv-like-button .count { font-weight: 700; }

.bv-like-button:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.2);
}

.bv-like-button.is-active {
  background: rgba(17,228,79,0.12);
  border-color: rgba(17,228,79,0.45);
  color: #eafff0;
}

.bv-like-login-hint {
  margin-top: .35rem;
  font-size: .9rem;
  opacity: .85;
}
.bv-like-login-hint a { color: #11E44F; text-decoration: none; }
.bv-like-login-hint a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .bv-like-button { padding: .45rem .7rem; border-radius: .45rem; }
  .bv-like-button .label, .bv-like-button .count { font-size: .9rem; }
}

/* Bonsai like in Stats Bereich Top*/
.bonsai-like-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bonsai-like-toggle i {
    color: transparent;            /* leer = weiß umrandet */
    -webkit-text-stroke: 1px #fff; /* weißer Rand */
    transition: color .2s ease, -webkit-text-stroke .2s ease;
}

.bonsai-like-toggle.liked i {
    color: #e63946;                /* rotes Herz */
    -webkit-text-stroke: 0;        /* kein Rand */
}
