/* 为整个页面设置背景颜色和渐变效果 */
body {
    background-color: #25353a;
    background-image: linear-gradient(135deg, #25353a 0%, #6a6d9f 100%);
}

/* 容器样式 */
.row {
    display: flex;
    justify-content: center;  /* 水平居中 */
    align-items: center;      /* 垂直居中 */
    padding: 20px;            /* 添加内边距 */
    border: 1px solid #e0e0e0; /* 添加边框 */
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    margin-top: 20px;         /* 上边距 */
}

/* iframe 样式 */
#igem-attribution-form {
    border: none;             /* 移除边框 */
    transition: height 0.3s; /* 高度变化时的过渡效果 */
    max-width: 100%;          /* 确保iframe不超过其容器的宽度 */
    overflow: hidden;         /* 隐藏溢出的内容 */
}
