.cellmodal-open{
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}
.cellmodal-container{
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,50%);
	overflow: auto;
    box-sizing: border-box;
	z-index: 100;
}
.cellmodal-body{
	position: relative;
	display: inline-block;
	max-width: 800px;
	width: 95%;
}
.cellmodal-close{
	position: absolute;
	top: -5px;
	right: 10px;
	width: 20px;
	height: 20px;
	font-size: 40px;
	color: #000;
	cursor: pointer;
	transform:rotate(45deg);
	z-index: 1000;
}
.cellmodal-content{
	background-color: #fff;
	padding: 30px;
	height: 300px;
	overflow: auto;
}
.cellmodal-content table{
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
.cellmodal-content td{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}