body {
    font-family: Arial, sans-serif;
}

.editor-container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
}

textarea {
    width: 100%;
    min-height: 600px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
}

/* 添加或修改现有的按钮样式 */
button {
    display: inline-block;
    margin: 0 10px 10px 0; /* 保持之前的调整 */
    padding: 10px 20px;
    font-size: 18px;
    /* 添加以下美化样式 */
    background-color: #87CEEB; /* 天蓝色背景 */
    color: white; /* 文字颜色设为白色 */
    border: none; /* 移除默认边框 */
    cursor: pointer; /* 鼠标悬停时指针变为手型 */
    border-radius: 5px; /* 圆角效果 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}

/* 可选：为按钮添加鼠标悬停效果 */
button:hover {
    background-color: #6495ED; /* 更浅的天蓝色，增加层次感 */
}