/* Social Feed Widget Styles */
.cedear-social-feed-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Post Creator */
.cedear-social-create-post {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cedear-social-create-header {
    display: flex;
    gap: 12px;
}

.cedear-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cedear-post-input {
    flex: 1;
    border: none;
    resize: none;
    font-size: 14px;
    font-family: inherit;
    min-height: 60px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cedear-social-create-media {
    margin-top: 10px;
}

.cedear-media-url-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 12px;
}

.cedear-social-create-footer {
    margin-top: 10px;
    text-align: right;
}

.cedear-post-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
}

.cedear-post-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

/* Stream */
.cedear-social-stream {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cedear-social-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.cedear-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cedear-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cedear-card-meta {
    flex: 1;
}

.cedear-card-author {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cedear-action-follow {
    font-size: 11px;
    color: #0073aa;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cedear-card-time {
    font-size: 12px;
    color: #999;
}

.cedear-card-content {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cedear-card-media {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.cedear-card-media img,
.cedear-card-media video {
    width: 100%;
    display: block;
}

.cedear-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.cedear-card-actions {
    display: flex;
    gap: 20px;
}

.cedear-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.cedear-action-btn:hover {
    background: #f5f5f5;
}

.cedear-action-btn.liked {
    color: #e0245e;
}

/* Comments */
.cedear-comments-section {
    margin-top: 15px;
    background: #fafafa;
    padding: 10px;
    border-radius: 8px;
}

.cedear-comments-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.cedear-comment-item {
    font-size: 13px;
    color: #333;
}

.cedear-comment-input-area {
    display: flex;
    gap: 8px;
}

.cedear-comment-input {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 13px;
}

.cedear-submit-comment {
    background: none;
    border: none;
    color: #0073aa;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
}

/* Load More */
.cedear-load-more-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    color: #666;
}

.cedear-load-more-btn:hover {
    background: #e0e0e0;
}