/* Estilos para los comentarios de Facebook */
.facebook-comments {
  background-color: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin: 0 auto 20px auto;
  max-width: 700px;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.facebook-header {
  background-color: #F5F6F7;
  padding: 10px 15px;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
}

.facebook-logo {
  color: #1877F2;
  font-size: 20px;
  margin-right: 10px;
}

.facebook-title {
  font-size: 14px;
  font-weight: 600;
  color: #1C1E21;
}

.facebook-comments-count {
  color: #65676B;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}

.comment-container {
  padding: 15px;
  border-bottom: 1px solid #E9EBEE;
  position: relative;
  transition: background-color 0.3s;
}

.comment-container:hover {
  background-color: #F5F6F7;
}

.comment-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}

.comment-profile-pic, .comment-reply-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.comment-reply-pic {
  width: 32px;
  height: 32px;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-weight: 600;
  color: #385898;
  margin-bottom: 3px;
  font-size: 14px;
}

.comment-text {
  font-size: 14px;
  color: #1C1E21;
  margin-bottom: 8px;
  line-height: 1.4;
}

.comment-actions {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #65676B;
}

.comment-action {
  margin-right: 12px;
  font-weight: 600;
  cursor: pointer;
}

.comment-action:hover {
  text-decoration: underline;
}

.comment-time {
  font-size: 12px;
  color: #65676B;
}

.comment-reactions {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.reaction-count {
  font-size: 12px;
  color: #65676B;
  margin-left: 5px;
}

.reaction-icons {
  display: flex;
  background-color: white;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.reaction-icon {
  font-size: 14px;
  margin-right: 2px;
}

.reply-form {
  margin-top: 8px;
  margin-bottom: 8px;
}

.reply-input-container {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F0F2F5;
}

.reply-input {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  background-color: transparent;
}

.reply-input:focus {
  outline: none;
}

.reply-submit {
  background-color: #1877F2;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.replies-container {
  margin-left: 20px;
  border-left: 2px solid #E9EBEE;
  padding-left: 10px;
}

.comment-reply {
  margin-top: 8px;
  margin-bottom: 8px;
}

.nested-reply {
  margin-left: 10px;
}

.like-button.liked {
  color: #1877F2;
  font-weight: bold;
}

.new-comment-form {
  padding: 15px;
  border-top: 1px solid #E9EBEE;
}

.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: #E4E6EB;
  margin-right: 10px;
}

.comment-input-container {
  flex: 1;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F0F2F5;
}

.comment-input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  background-color: transparent;
}

.comment-input:focus {
  outline: none;
}

.comment-submit {
  background-color: #1877F2;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

