﻿body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 0;
}
#error {
	color: red;
}
#footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
}

/* Style the navigation menu */
.topnav {
	overflow: hidden;
	background-color: #0c4c66;
	position: relative;
}
	.topnav .header {
		position: sticky;
		top: 0;
		width: 100%;
		height: 45px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #0492aa;
		margin: 0;
	}
		.topnav .header h1 {
			margin-top: 0;
			color: white;
		}
	/* Hide the links inside the navigation menu (except for logo/home) */
	.topnav #myLinks {
		display: none;
	}
	/* Style navigation menu links */
	.topnav a {
		color: white;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 1.5rem;
		display: block;
	}
		/* Style the hamburger menu */
		.topnav a.icon {
			background: black;
			display: block;
			position: absolute;
			left: 0;
			top: 0;
		}
		/* Add a grey background color on mouse-over */
		.topnav a:hover {
			background-color: #11759f;
			/*color: black;*/
		}

/* Style the active link (or home/logo) */
.active {
	background-color: #04AA6D;
	color: white;
}

.main {
}

h1 {
	font-size: 2rem;
}
h2 {
	font-size: 3rem;
	margin: 0;
}
h3 {
	font-size: 2.25rem;
}
h4 {
	font-size: 2rem;
	font-style: italic;
}
h1, h2, h3, h4 {
	margin-bottom: 0;
}

div.aide {
	margin: 3rem;
}
	div.aide div {
		margin: 0 2rem;
		font-size: 1.5rem;
	}

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
	border: none;
}
td, th {
	border: 1px solid grey;
	padding: 10px;
	text-align: left;
	border-radius: 8px;
	font-size: 1.5rem;
}
tr:hover {
	background-color: #badbf9;
	cursor: pointer;
}
	td.col-image {
		width: 100px;
	}
	td.clickable {
		cursor: pointer;
	}

input, button {
	border-radius: 10px;
	padding: 8px;
	border: 1px solid grey;
	font-size: 1.5rem;
}

a.linksite {
	color: #899F11;
	text-decoration: none;
}
	a.linksite:hover {
		color: #d88e4b;
		font-weight: bold;
	}

.btn {
	background-color: #899F11;
	color: white;
	border: none;
	height: 30px;
	line-height: 30px;
	padding: 0 15px;
	text-align: center;
	cursor: pointer;
}
	.btn:hover {
		background-color: #6F7E0D;
	}

.btn1 {
	text-decoration: none;
	padding: 7px;
	font-family: arial;
	font-size: 1.5rem;
	color: #FFFFFF;
	background-color: #11759f;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border: 0px solid #FFFFFF;
	box-shadow: 1px 1px 4px #444444;
	-webkit-box-shadow: 1px 1px 4px #444444;
	-moz-box-shadow: 1px 1px 4px #444444;
}
	.btn1:hover {
		padding: 7px;
		border: 2px solid #FFFFFF;
		box-shadow: 0px 4px 4px #777777;
		-webkit-box-shadow: 0px 4px 4px #777777;
		-moz-box-shadow: 0px 4px 4px #777777;
	}
	.btn1.all {
		background-color: #badbf9;
		color: black;
	}

td.col-image {
	width: 25%;
	min-width: 100px;
	text-align: center;
}

#topButton {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: #0c4c66; /* Set a background color */
	color: white; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 1rem; /* Increase font size */
}
	#topButton:hover {
		background-color: #555; /* Add a dark-grey background on hover */
	}

#divCoupDeCoeur {
	padding: 5px;
	text-align: center;
	font-size: 1.5rem;
}

/* CUSTOMISED LAYOUT */
.search {
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding: 0.5rem 0;
}
	.search input {
		width: 50% !important;
	}
	.search button {
		width: 24% !important;
	}

/* highlight buttons */
.highlight {
	background-color: #f48f8f;
	color: black;
}
/* highlight input when filled */
input:not(:placeholder-shown) {
	background-color: #f48f8f;
}
.tagMarkTitre {
	font-weight: bold;
	font-size: 1.3em;
}