/* 页面基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 容器样式 */
#app {
    width: 100%;
    max-width: 800px;
    height: 80vh;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Web SDK 自定义样式 */
.coze-app-sdk {
    width: 100%;
    height: 100%;
}

/* iframe 样式 */
.coze-app-sdk iframe {
    width: 100%;
    height: 100%;
    border: none;
}