/**
 * 28/05/25 : création initiale
 * 08/07/25 : placeholder dtpk3
 */

body { background-color: aliceblue; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }

/********************************************/
/* 			     Formulaires 				*/

label.required {
	color: red;
}
label.required::before {
	content: '* ';
}
input.dtpk3::placeholder {
  font-style: italic;
}


/********************************************/
/* 		Suggestions (ie autocomplete) 		*/
.suggest-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.suggest-items > * {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  display: block;
  padding: 4px;
}
.suggest-reverse {
  top: inherit;
  bottom: 100%;
}
.suggest-reverse > * {
  border-bottom-style: none;
  border-top: 1px solid #d4d4d4;
}
.suggest-items > *:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.suggest-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}


/********************************************/
/* 			       Signature				*/

canvas.signature {
	border: 1px solid black;
	width: 100%;
	min-height: 100px;
	max-height: 250px;
}
