/* FEUILLE DE STYLE CSS
Associée à la page HTML dans mon fichier enTete*/

* {
 	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

/* Mise en forme du header (contenant le logo) et du système de connexion */
.header {
	display: flex;
	flex-direction: row;
	position:fixed;
	width : 100%;
	height:130px;
	background-color: #dadada;
	padding: 0px;
	padding-left: 200px;
	text-align: left;
	font-size: 35px;
	justify-content: space-between;
}

.logo {
	display: flex;
	flex-direction: row;
	position:relative;
	height:130px;
	background-color: #dadada;
	text-align: left;
	font-size: 35px;
}

.login {
	display: flex;
	position:relative;
	width : 12em;
	padding-top: 10px;
	padding-right: 10px;
    display: block;
    font: .9rem 'Fira Sans', sans-serif;
}

label {
	position:relative;
    display: block;
    font: .9rem 'Fira Sans', sans-serif;
}

input[type='submit'],
label {
    padding-right: 20px;
}

/* Mise en forme du panneau de navigation */
.sidenav {
	height: 100%;
	width: 200px;
	position: fixed;
	padding-top: 130px;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #595959;
	overflow-x: hidden;
}

/* Mise en forme des liens de navigation*/
.sidenav a {
	color: white;
	padding: 16px;
	text-decoration: none;
	display: block;
}

/* Changement de forme du curseur sur les liens de navigation */
.sidenav a:hover {
	background-color: #ddd;
	color: black;
}

/* Mise en forme de l'image d'accueil */
.imgAccueil {
	display : flex;
	justify-content: center;
}

.imgAccueil img {
	display : flex;
	justify-content: center;
	max-width: 82%;
	height: auto;
	margin-left: 0px;
	margin-right: 20px;
	padding-left: 20px;
	padding-top: 20px;
}

/* Mise en forme du contenu de chaque vue */
.content {
	margin-left: 200px;
	margin-right: 20px;
	padding-left: 20px;
	padding-right: 0px;
	margin-top: 150px;
	padding-top: 0px;
}

/* Mise en forme du footer */
.footer {
	background-color: #f1f1f1;
	padding: 10px;
	margin-left: 200px;
	padding-left: 20px;
	text-align: 10px;
}