/* 评论容器整体美化 */
#waline {
  max-width: 720px;
  margin: 3rem auto;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* 输入框区卡片化 */
#waline .wl-editor {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  
  border-radius: 40px;
  border: 1px solid #ddd;
  padding: 16px;
  background-color: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ✅ 隐藏头像（新版本 Waline 的类名） */
#waline .wl-user-avatar {
  display: none !important;
}

/* 去掉 UA 信息 */
#waline .wl-ua {
  display: none !important;
}

/* 去掉点赞、回复按钮 */
#waline .wl-actions {
  display: none !important;
}

/* 去掉排序按钮 */
#waline .wl-sort {
  display: none !important;
}

/* 提交按钮样式 */
#waline .wl-submit {
  background-color: #0078d7 !important;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#waline .wl-submit:hover {
  background-color: #005ea0 !important;
}

/* 评论展示卡片样式 */
#waline .wl-content {
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: #f9f9f9;
  border: 1px solid #eee;
}

/* 底部 Waline 信息淡化 */
#waline .wl-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 2rem;
}
