
/**
 * LinkedIn Feed Styles
 */

.linkedin-feed-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  max-width: 85%;
  margin: 0 auto 30px;
}

@media screen and (max-width: 600px) {
    .linkedin-feed-container {
        max-width: 100%;
    }
}
    
    
.linkedin-feed-header {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  /*border-bottom: none;*/
  margin-bottom: 1%;
}

.linkedin-feed-logo {
  margin-right: 10px;
}

.linkedin-feed-header span {
  font-weight: 600;
  color: #0a66c2;
  font-size: 18px;
}

.linkedin-feed-content {
  background: #f3f2ef00;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.linkedin-feed-loading {
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: #666666;
}

.linkedin-feed-post {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  padding: 16px;
}

.linkedin-feed-post-header {
  display: flex;
  align-items: flex-start;
}

.linkedin-feed-post-author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.linkedin-feed-post-author-info h3 {
  margin: 0 0 2px 0;
  font-size: 16px;
  font-weight: 600;
}

.linkedin-feed-post-author-title {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #666666;
}

.linkedin-feed-post-timestamp {
  font-size: 12px;
  color: #777777;
}

.linkedin-feed-post-content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-line;
}

.linkedin-feed-post-stats {
  display: flex;
  font-size: 12px;
  color: #666666;
  margin: 12px 0 8px;
  padding: 8px 0;
  border-top: 1px solid #f2f2f2;
}

.linkedin-feed-post-actions {
  display: flex;
  border-top: 1px solid #e0e0e0;
}

.linkedin-feed-post-action {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.linkedin-feed-post-action svg {
  margin-right: 6px;
}

.linkedin-feed-post-action:hover {
  background-color: #f3f2ef;
}

.linkedin-feed-pagination {
  padding: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.linkedin-feed-pagination-item {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

.linkedin-feed-pagination-item.active {
  background-color: #0a66c2;
  color: #ffffff;
  border-color: #0a66c2;
}

.linkedin-feed-pagination-prev,
.linkedin-feed-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.linkedin-feed-pagination-prev.disabled,
.linkedin-feed-pagination-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.linkedin-feed-footer {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.linkedin-feed-config {
  background: #f9f9f9;
  border: 1px dashed #cccccc;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}
