.header-logo {
	background-image: url(../images/Logo.svg);
}

.error-btn-sendtosupport {
	min-width: 125px;
}

.griddisplay-cell {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #ccc;
}

.griddisplay-data {
}

.griddiplay-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: #e5e7eb;
	font-weight: bold;
}

.griddisplay-headerrow {
	
	position: sticky;
	left: 0;
	z-index: 11;
	background-color: #e5e7eb;
	font-weight: bold;
}


.split-cell {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid #ccc;
	font-size: 10px;
	overflow: hidden;
}

	.split-cell .top-left {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		clip-path: polygon(0 0, 100% 0, 0 100%);
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 2px;
		color: #000;
	}

	.split-cell .bottom-right {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		clip-path: polygon(100% 100%, 100% 0, 0 100%);
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		padding: 2px;
		color: #000;
	}

	.selected {
		outline: 2px solid #0078d7; 
		outline-offset: -2px;
	}