html, body 
{
	background: #ffffff;
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	font-family: Arial, sans-serif;
}

header 
{
	background-color: #eeeeee;
	padding: 20px;
	text-align: left;
}

header img 
{
	height: 60px;
}

main 
{
	flex: 1;
	padding: 20px;
	background-color: #eeeeee;
}

footer 
{
	background-color: #eeeeee;
	text-align: center;
	padding: 10px;
	font-size: 0.9em;
}

a 
{
	color: black;           
	text-decoration: none;  
	margin: 2px;
	padding: 2px;
	vertical-align: sub;
}

a:hover 
{
	border: dotted 2px;
	margin: 0px;
}

.posa 
{
	margin: 2px;
	padding: 2px;
	vertical-align: top;
}

.posa:hover 
{
	border: dotted 2px;
	margin: 0px;
	padding-top:10px;
}


form
{
	margin: 4px;
	padding: 0px;
}

input:focus, textarea:focus 
{
	outline: none; 
}

div, p, form
{
	background: transparent;
	margin: 0px;
	padding: 0px;
}

.ListeButton
{
	margin: 0px;
	padding: 12px;
	border: 0px;
	background-color: transparent;
}

.ListeButton:hover, .ListeButton:focus, .ListeButton:focus-visible
{
	background: #eeeeee;
	border: 0px;
	outline: none;
}

button:active
{
	background: transparent;
	border: 0px;
}

.dialogmodal
{
	position: fixed;
	inset: 0;                 
	background: rgba(0,0,0,0.5);
	align-items: center;      
}

.dialog 
{
	margin: 0px;
	padding: 0px;
	position: fixed;
	background: #f3f3f3;
	color: black;
	border-radius: 8px;
	border: solid 1px;
	box-sizing: border-box;
	user-select: none;
	touch-action: none;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

.dialogcaption 
{
	margin: 0px;
	padding: 6px;
	background: #f3f3f3;
	color: black;
	border-radius: 8px;
}

.dialogmenu 
{
	display: flex;
	align-items: flex-start
	margin-bottom: 6px;
	background: #f9f9f9;
	color: black;
	border-radius: 8px;
	padding: 6px;
}

.dialogmain 
{
	margin: 0px;
	padding: 6px;
	background: #f9f9f9;
	color: black;
	border-radius: 8px;
}

.dialogbottom 
{
	display: flex;
	justify-content: center;
	background: #f9f9f9;
	color: black;
	border-radius: 8px;
	padding: 6px;
}

.dragging 
{
	cursor: grabbing;
	opacity: 0.9;
}

input[data-type] 
{
	margin: 2px;
}

input[data-type="text"] 
{
	width: 200px;
}

input[data-type="string"] 
{
	width: 180px;
}

input[data-type="decimal"] 
{
	width: 100px;
}

input[data-type="int"] 
{
	width: 60px;
}

input[data-type="account"] 
{
	width: 60px;
}

input[data-type="date"] 
{
	width: 100px;
}

input[data-type="datetime"] 
{
	width: 160px;
}

input[type="button"]
{
	white-space: normal;
	line-height: 1.2;
	background: #f3f3f3;
	color: black;
	border-radius: 8px;
	border: solid 1px #aaaaaa;
	width: 75px;
	height: 75px;
	margin-right: 4px;
	margin-left: 4px;
}

input[type="button"]:hover, input[type="button"]:focus
{
	background: #f3f3f3;
	color: black;
	border-radius: 8px;
	border: solid 1px #000000;
	width: 75px;
	height: 75px;
	margin-right: 4px;
	margin-left: 4px;
}

