.CustoSimpleGridContainer {
	display: block;
	/* : This is a (hacky) way to make the .grid element size to fit its content */
	width: calc(100% - 10px);
	height: inherit;
	overflow: auto;
	/*
	overflow-x: auto;
	overflow-y:hidden;
	*/
	padding: 0;
	margin-left: 5px;
}

.CustoSimpleGridContainer -webkit-scrollbar {
	width: 15px;
	height: 15px;
}

.CustoSimpleGridContainer -webkit-scrollbar-track {
	background-color: transparent;
}

.CustoSimpleGridContainer -webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: gray;
}

.CustoSimpleGridHead {
	display: block; /* table | block | inline-block 以꾨컮�� */
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	top: 0;
	margin-top: 0px;
	/* text-align: center; */
	/* border: 1px solid gray; */
	table-layout: fixed; /* fixed : 而щ읆 �겕湲� 怨좎젙 */
	background: lightgray;
}

.stickyHead {
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	top: 0;
	/* text-align: center; */
	/* border: 1px solid gray; */
	margin-top: 1rem;
	/* background: lightgray; */
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #858796;
}

.CustoSimpleGridHead thead {
	position: -webkit-sticky; /* for Safari */
	position: sticky;
	top: -10px;
	/* display: table;	block | table | inherit */
	/* border-collapse: collapse; */
	/* table-layout: inherit; table | fixed; */
	/*
	border: 1px solid #000;
	background: pink;
	background: lightgray;
	*/
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #858796;
}

.CustoSimpleGridHead thead tr td, .CustoSimpleGridHead thead tr th {
	/* border-top: 0; */
	table-layout: table; /* fixed : td 湲몄씠 怨좎젙 */
	/* display: block;	table | block | inline-block */
	padding: 0.75rem;
	vertical-align: middle;
	border-bottom: 1px solid #e3e6f0;
	background: white;
}

.CustoSimpleGridHead thead .stickyHead:after {
	content: "";
	position: absolute;
	left: 0;
	width: 1px;
	height: 76px;
	background: #dee2e6
}

.CustoSimpleGridHead thead .stickyHead:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #dee2e6;
}

.CustoSimpleGridHead thead .stickyHead:after {
	top: 0px;
}

.CustoSimpleGridHead thead .stickyHead:before {
	top: -1px;
}

.headerRow {
	background-color: #dddddd; /* #BBDEFB */
	border: 1px solid #bbbbbb;
	color: black;
	font-weight: bold;
}

.CustoSimpleGridBodyContainer {
	width: calc(100% - 10px);
	overflow-x: hidden;
	overflow-y: hidden;
}

/* border-collapse: collapse; */
/* border: 2px solid #000; */
.CustoSimpleGridBody {
	display: block; /* table | block | inline-block 以꾨컮�� */
	table-layout: fixed; /* fixed : 而щ읆 �겕湲� 怨좎젙 */
	word-break: break-all;
	empty-cells: show;
	padding: 0;
	overflow-x: hidden;
	overflow-y: hidden;
}

.CustoSimpleGridBody tr:hover {
	background-color: #C4E2FF;
}

.CustoSimpleGridBody tr td {
	margin-left: 0px;
	margin-top: 0px;
	border-bottom: 0px;
	/* vertical-align: top; */
	white-space: nowrap;
}

.CustoSimpleGridBody-selectedrow {
	background: rgb(233, 233, 233);
}