body{
	display: flex;
	flex-direction: column;
  background-color: gray;
  font-family: Arial, Arial Black, serif;
	margin: auto;
}

.horizontalSpacer{
		display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.verticalSpacer{
	display: flex;
	flex-direction: column;
}

#competencyNbUlId {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#competencyNbUlId > li {
	width: 18%;
	text-align:center;
}

#studentsArtId{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

article{
	flex:1;
}


#selectGradeId{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#selectGradeCol1UlId{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

#selectGradeCol2UlId{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}



/* Boite arrondie avec ombre */
header, article, footer {
	border-radius: 5px;
	box-shadow: 0px 4px 4px #1c1a19;
	background-color:white;
	padding: 1rem;
	margin: 1rem;
}




ul{
	list-style:none;
	margin:0;
	padding:0;
}


li {
	background-color: lightGray;
	border-radius: 5px;
	margin: 0.5rem;
	padding: 0.5rem;
  
}

li:hover {
	background-color: #7F9CCB;
	color: white;
}


footer{
  margin:1rem;
  flex-basis:100%;
}


.imgFaces{
	float: right;
  width: 15px;        /* Largeur de l'image, à adapter */
  height: 15px;
}

#saveCsvId{
	background-color: LightCoral;
}

.imgSelectFaces{
  width: 25px;        /* Largeur de l'image, à adapter */
  height: 25px;
  padding:10px;
}

.imgSelectFaces:hover {
	background-color: red;
}

.liSelectFaces{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#articleSaveId {
	list-style:none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

footer a {
  display: block;
  margin-bottom: 0.5em; /* optionnel, pour espacer les liens */
}