.vt-action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
}

.vt-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* --- MEGOSZTÁS GOMB STÍLUSAI --- */
.vt-share-btn { 
    background-color: #1877F2; 
}

.vt-share-btn:hover { 
    background-color: #dc3545; 
    color: #fff;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.4); 
} /* EZ A ZÁRÓJEL HIÁNYZOTT! */


/* --- LÁJKOLÁS GOMB STÍLUSAI --- */

.vt-like-btn { 
    background-color: #6c757d; 
    color: #fff; 
}

.vt-like-btn:hover { 
    background-color: #5a6268; 
}

/* Lájkolás gomb megnyomva (piros/aktív) */
.vt-like-btn.liked { 
    background-color: #dc3545; 
    cursor: default; 
}

.vt-like-btn.liked:hover { 
    background-color: #dc3545; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); 
    transform: none; 
}

/* --- KÖZÖS IKON ÉS AKTÍV ÁLLAPOT --- */
.vt-action-btn svg { 
    margin-bottom: 1px; 
}

.vt-action-btn:active { 
    transform: translateY(1px); 
    box-shadow: none; 
}