/* 通用卡片样式 */
.message-box {
  margin: 1em 0;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.message-title {
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.message-title::before {
  margin-right: 8px;
}

.message-content {
  line-height: 1.6;
}

/* Warning样式 */
.warning-box {
  background-color: #fff8e6;
  border: 1px solid #ffd666;
}

.warning-box .warning-title {
  color: #d48806;
}

.warning-box .warning-title::before {
  content: "⚠️";
}

/* Info样式 */
.info-box {
  background-color: #e6f4ff;
  border: 1px solid #91caff;
}

.info-box .info-title {
  color: #0958d9;
}

.info-box .info-title::before {
  content: "ℹ️";
}

/* Error样式 */
.error-box {
  background-color: #fff1f0;
  border: 1px solid #ffa39e;
}

.error-box .error-title {
  color: #cf1322;
}

.error-box .error-title::before {
  content: "❌";
}

/* 代码块自动换行 */
.markdown-body pre code {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

/* 行内代码自动换行 */
.markdown-body code {
  word-wrap: break-word !important;
  white-space: pre-wrap !important;
} 