.main_frame {
	text-align: center;
}
button.menu {
	width: 50%;
	padding: 10px;
	border-width: 4px;
	border-radius: 5px;
	display: block; /* Chaque bouton sur une nouvelle ligne */
	margin: 0.5em auto; /* `auto` pour centrer horizontalement, 0.5em pour l'espacement vertical */
}
.menu--space-bottom {
    margin-bottom: 2em !important;
}

.affichage_eval {
	text-align: left;
}


form.login {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: -100px;
}

input[type=submit] {
	border: solid  1px  darkmagenta;
	padding: 15px;
	margin-bottom: 10px;
	outline: none;
	border-radius: 7px;
}
input[type=button].bigbutton {
	border: solid  1px  darkmagenta;
	padding: 15px;
	margin-bottom: 10px;
	outline: none;
	border-radius: 7px;
}

input[type=text], [type=password] {
	border: solid  1px  darkmagenta;
	margin-bottom: 10px;
	padding: 16px;
	outline: none;
	border-radius: 7px;
}

.tablebutton {
	vertical-align : middle;
	width : 100%;
}
table.tableau_checkbox {
	border: solid 3px #00A0FF;
}
table.tableau_exercices {
	border: solid 3px #00A0FF;
	width: 100%;
}

th,td {
	border: solid 1px black;
}
th.noborder,td.noborder {
	border: none;
}
table.tableau_evals {
	margin: auto;
	border: none; /*solid 3px black;*/
}
.selected {
	border: solid 5px rgb(163, 3, 30);
}
.icon-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.icon-container a {
	display: block;
	margin: 5px 0;
}
.icon-container img {
	width: 24px;
	height: 24px;
}
.left-aligned {
	text-align: left;	
}
.stick_to_right {
	float: right;
}

.stretch_from_left {
	flex-grow: 1; /* Permet au bouton de s'étendre pour prendre l'espace disponible */
	margin-right: 5px; 
}

.button-container {
	display: flex;
	width: 100%;
}
.button-container-right {
	display: flex;
	justify-content: flex-end; /* Aligne les éléments enfants à droite */
  	gap: 10px; /* Ajoute un espace entre les boutons */
	width: 100%;
}
.button-container-mid {
	display: flex;
	justify-content: center; /* Aligne les éléments enfants à droite */
  	gap: 10px; /* Ajoute un espace entre les boutons */
	width: 100%;
}


.exo_select {
	width: 100%;
	display : flex;
}
.exo_categorie {
	color: blueviolet;
}