html {
	height: 100%;
}

#graphPopup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	background-color: white;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 20px;
}

#mygrid>thead>tr>th:nth-child(1) {
	white-space: nowrap;
}

#mygrid>thead>tr>th>font>b>a {
	text-decoration: none;
	color: white;
}

#graphPopup canvas {
	width: 100%;
	height: 100%;
}

#graphPopupClose {
	position: absolute;
	top: 30px;
	right: 10px;
	cursor: pointer;
}

.delete-btn,
.edit-btn {
	padding: 5px 10px;
	margin: 2px;
	border: none;
	border-radius: 3px;
	color: white;
	cursor: pointer;
	font-size: 14px;
}

.delete-btn {
	background-color: #ff0000;
}

.delete-btn:hover {
	background-color: #cc0000;
}

.edit-btn {
	background-color: #4CAF50;
}

.edit-btn:hover {
	background-color: #45a049;
}

.cancel-btn {
	padding: 5px 10px;
	margin: 2px;
	border: none;
	border-radius: 3px;
	color: white;
	cursor: pointer;
	font-size: 14px;
	background-color: #f44336;
}

.cancel-btn:hover {
	background-color: #da190b;
}

.edit-input {
	width: 100%;
	padding: 4px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.edit-textarea {
	width: 100%;
	padding: 4px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 3px;
	resize: none;
	overflow: hidden;
	min-height: 20px;
	line-height: 1.2;
	font-family: inherit;
	font-size: 8pt;
}

#mygrid>thead>tr>th>font>b>input[type=checkbox] {
	padding: 0;
	margin: 0;
}

#mygrid>tbody>tr>td>font>input[type=checkbox] {
	padding: 0;
	margin: 0;
}