.filePreviewItem {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 10px;
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	max-width: 500px;
	background-color: #e8f8f5;
}

.fileLink {
	text-decoration: none;
	color: #007bff;
	flex: 1;
	word-break: break-all;
}

.removeFile {
	cursor: pointer;
	color: red;
	font-size: 18px;
	border: none;
	background: none;
}

.removeFile:hover {
	color: darkred;
}


/*****************************************************************/
/*****************************************************************/
.redbox {
	text-align: left;
	vertical-align: top;
	border: 2px solid #EC1C24;
	padding: 10px;
}
.yellowbox {
	text-align: left;
	vertical-align: top;
	border: 2px solid #FFC000;
	padding: 10px;
}
.bluebox {
	text-align: left;
	vertical-align: top;
	border: 2px solid #1C62B7;
	padding: 10px;
}

/*** CSS propres au thème SNK ***/
::-ms-input-placeholder { /* Edge 12-18 */
	color: grey;
	font-size: 13px;
	font-style: italic;
}

::placeholder {
	color: grey;
	font-size: 13px;
	font-style: italic;
}

.errorform {
	font-family: arial,verdana,helvetica;
	font-size: 10pt;
	color: red;
	font-style: italic;
	text-align: right;
	padding-right: 10px;
}

.myContainer {
	display: flex;			/* Utiliser flexbox pour l'alignement */
	gap: 0px;				/* Espace entre les éléments */
	align-items: center;	/* Aligner les éléments au centre verticalement */
}

/*****************************************************************/
.myform {
	width: 100%;
	min-height: 36px;
	padding: 5px 10px 5px 10px;
	font-family: arial, verdana, helvetica;
	font-size: 16px; 
	color: #000000;
	
	background-color: #f4f6f6;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-attachment: fixe;
	background-position: top 10px right 20px;
}

.border-red 	{ border-color: #cc0000; background-color: #FFFAFA; } /* FFFAFA=Snow ou FFF0F5 */
.border-green	{ border-color: green; background-color: #e8f8f5;}
.ko 			{ background-image: url("../../../assets/images/ko.svg"); }
.ok 			{ background-image: url("../../../assets/images/ok.svg"); }
.rndRight4 		{ border-radius: 0px 4px 4px 0px; }
.rndLeft4 		{ border-radius: 4px 0px 0px 4px; }

.myArea			{ min-height: 70px; max-height: 140px; resize: vertical; }
.myDate 		{ padding-right: 50px; } /* Espace pour l'icône */
.mySelect 		{ width: 100px; text-align: center; background-position: center; border-right: 0px; }

.forbidden		{ cursor: not-allowed; }

/*****************************************************************/
.fileform_ko {
	width: 100%; height: 36px; padding: 0px;
	font-family: arial, verdana, helvetica;
	font-size: 16px; 
	color: #000000;
	
	background-color: #F9F9F9;
	border-color: #cc0000;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	
	background-image: url("../../../assets/images/ko.svg");
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-attachment: fixe;
	background-position: top 10px right 20px;
}

.fileform_ko input[type="file"]::file-selector-button {
	background-color: #F9F9F9;
	color: #000000;
	border: 0px;
	border-right: 1px solid #cc0000;
	padding: 10px 10px;
	margin-right: 20px;
	transition: .25s;
	
	cursor: pointer;
	border-radius: 4px 0px 0px 4px;
}

.fileform_ko input[type="file"]::file-selector-button:hover {
	background-color: #cc0000;
	color: #ffffff;
}

.fileform_ok {
	width: 100%; height: 36px; padding: 0px;
	font-family: arial, verdana, helvetica;
	font-size: 16px; 
	color: #000000;
	
	background-color: #e8f8f5;
	border-color: green;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	
	background-image: url("../../../assets/images/ok.svg");
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-attachment: fixe;
	background-position: top 10px right 20px;
}

.fileform_ok input[type="file"]::file-selector-button {
	background-color: #e8f8f5;
	color: #000000;
	border: 0px;
	border-right: 1px solid green;
	padding: 10px 10px;
	margin-right: 20px;
	transition: .25s;
	
	cursor: pointer;
	border-radius: 4px 0px 0px 4px;
}

.fileform_ok input[type="file"]::file-selector-button:hover {
	background-color: green;
	color: #ffffff;
}

/*****************************************************************/
/* The container */
.custom-checkbox {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	user-select: none;
	color: blue;
}

/* Hide the browser's default checkbox */
.custom-checkbox input[type="checkbox"] {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #F9F9F9;
	border: 1px solid #cc0000;
	border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #dddddd;
}

/* When the checkbox is checked, add a green background */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
	background-color: green;	/* #4CAF50 */
	border: 1px solid green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
	left: 7px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

/*****************************************************************/
