html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
}

.link-no-style {
	color: black;
	text-decoration: none;
}

h1 {
	background-color: #0D47A1;
	padding: 8px 12px;
	margin-bottom: 10px;
	color: white;
	border-radius: 0.25rem;
}

.titre-liste-1 {
	background-color: #1E88E5;
	color: white;
	font-weight: 600;
	font-size: 1.1em;
	padding: 12px 16px;
}

h2 {
	color: white;
	background-color: #1E88E5;
	padding: 8px 12px;
	border-radius: 0.25rem;
}

.titre-liste-2 {
	background-color: #E3F2FD;
	color: #0D47A1;
	font-weight: 600;
	font-size: 0.95em;
	padding: 10px 16px;
	border-bottom: 2px solid #BBDEFB;
}

.titre-bg {
	background-color: #4A8BDF;
	padding: 8px 12px;
	margin-bottom: 10px;
	color: white
}

.texte-bg {
	background-color: #EFFAFD;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 3px 2px 3px 3px;
	border: 1px solid lightgray;
}

:root {
	--main-casque-color: #3498db;
}

.pastille {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-left: 5px;
	vertical-align: text-bottom;
	background-color: var(--main-casque-color);
}

/* Style global du tableau */
.custom-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 20px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}

	/* Lignes de titre principales */
	.custom-table .titre1 {
		background-color: #1E88E5;
		color: white;
		font-weight: 600;
		font-size: 1.5em;
		padding: 10px 14px;
	}

	/* Lignes de sous-catégories */
	.custom-table .titre2 {
		background-color: #E3F2FD;
		color: #0D47A1;
		font-weight: 600;
		font-size: 1.2em;
		padding: 8px 14px;
		border-bottom: 2px solid #BBDEFB;
	}

	/* Cellules de contenu */
	.custom-table td {
		padding: 2px 10px;
		vertical-align: middle;
		border-bottom: 0px solid;
		color: #37474F;
	}

	/* Nom de l'exercice */
	.custom-table .exercise-title {
		font-weight: 500;
		margin-bottom: 4px;
		display: block;
		margin: 0;
	}

	/* Conteneur des badges élèves */
	.custom-table .badge-container {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}

	/* Style de base des badges (étiquettes) */
	.custom-table .student-badge {
		display: inline-block;
		padding: 4px 8px;
		font-size: 0.75em;
		font-weight: bold;
		color: white;
		border-radius: 4px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	/* Couleurs des badges */
	.custom-table .badge-A {
		background-color: #2E7D32;
	}

	.custom-table .badge-PA {
		background-color: #FBC02D;
		color: #212121;
	}

	.custom-table .badge-NA {
		background-color: #B00020;
	}

	.custom-table .badge-NE {
		background-color: #78909C;
	}


.listTitle {
	color: blue;
	font-weight: 700;
	font-size: clamp(40px, 7vw, 72px);
}

.ngoTitle {
	color: black;
	font-weight: 700;
	font-size: clamp(40px, 7vw, 72px);
}

.labelTitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: blue;
	margin-bottom: 30px;
}

.boutonPlein {
	background-color: blue;
	padding-left: 20px;
	padding-right: 20px;
	border-block-style: none;
}

.boutonVide {
	margin-left: 10px;
	background-color: white;
	color: black;
}

.control-label {
	margin-top : 10px;
}