vsocial-styles.css
/* Estilos generales */
.vsocial-notifications {
    position: relative;
    display: inline-block;
}

.vsocial-notif-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.vsocial-notif-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.vsocial-notif-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.vsocial-notif-item:hover {
    background: #f9f9f9;
}

/* Comentarios */
.vsocial-comment-form {
    margin-bottom: 20px;
}

.vsocial-comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.vsocial-comment {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.vsocial-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.vsocial-comment-content strong {
    display: block;
    color: #333;
}

/* WhatsApp */
.vsocial-whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.vsocial-whatsapp-btn:hover {
    background: #128c7e;
}