/* 使用系统UI字体，达到类似Apple设备上的原生感觉 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* API 卡片样式 */
.api-card {
    display: block;
    background-color: white;
    border-radius: 1rem; /* 更圆润的边角 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: all 0.2s ease-in-out;
    border: 1px solid #e5e7eb;
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* API 渲染器容器样式 */
#api-viewer {
    /* 让渲染器占满整个视口高度 */
    height: 100vh;
}