* {
	margin: 0px;
	padding: 0px;
}
table
{
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0 auto;
	text-align: center;
}
td, th /* Mettre une bordure sur les td ET les th */
{
    border: 1px solid black;
     padding: 5px;
}
.header {
	width: 30%;
	margin: 50px auto 0px;
	color: white;
	background: #5F9EA0;
	text-align: center;
	border: 1px solid #B0C4DE;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
	padding: 20px;
}
.centrer {
	color: green; 
	text-align: center;
}
form, .content {
	width: 80%;
	margin: 0px auto;
	padding: 20px;
	border: 1px solid #B0C4DE;
	background: white;
	border-radius: 0px 0px 10px 10px;
	text-align: center;
	align-items: center;
}
.input-group {
	margin: 10px 0px 10px 0px;
}

.input-group label {
	display: block;
	text-align: left;
	margin: 3px;
}
.input-group select {
	display: block;
	text-align: left;
	margin: 3px;
}
.input-group input {
	height: 30px;
	width: 93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid gray;
}
.btn {
	display: inline-block;
    align-items: center;
    justify-content: center;
    height: 60px;
	width: 120px;
	padding: 10px;
	font-size: 15px;
	color: white;
	background: #5F9EA0;
	border: none;
	border-radius: 5px;
	text-align: center;
	transition: background-color 0.3s;
}
.btn:hover {
	background-color: #4682b4; /* Changez la couleur d'arrière-plan au survol */
}
.btn.clicked {
	background-color: #48079e; /* Changez la couleur d'arrière-plan pour indiquer le clic */
	color: white;
}
.message {
	color: red;
	margin-top: 5px; /* Ajoutez une marge pour espacer le message de l'input */
	display: none; /* Rendre le div invisible initialement */
	transition: opacity 0.5s;
}
.message.success {
	color: green;
}

.fade-in {
	opacity: 1 !important;
}
.error {
	width: 92%; 
	margin: 0px auto; 
	padding: 10px; 
	border: 1px solid #a94442; 
	color: #a94442; 
	background: #f2dede; 
	border-radius: 5px; 
	text-align: left;
}
.success {
	color: #3c763d; 
	background: #dff0d8; 
	border: 1px solid #3c763d;
	margin-bottom: 20px;
}
nav > ul{
	margin: 0px;
	padding: 0px;
}
nav li{
	list-style-type: none;
}
nav > ul > li{
	float: left;
}
.submenu{
	display: none;
}
nav input[type=checkbox]{
	display: none;
}
.menu-mobile{
	display: none;
}
nav{
	width: 100%;
	background-color: black;
}
nav > ul > li{
	float: left;
	position: relative;
}
nav > ul::after{
	content: "";
	display: table;
	clear: both;
}
nav a{
	display: inline-block;
	text-decoration: none;
}
nav > ul > li > a{
	padding: 20px 30px;
	color: white;
}
nav li:hover .submenu{
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 0px;
	padding: 0px;
	z-index: 100000;
}
.submenu li{
	border-bottom: 1px solid #CCC;
}
.submenu li a{
	padding: 15px 30px;
	font-size: 13px;
	color: #222538;
	width: 270px;
}
.menu-html:hover{
	border-top: 5px solid #e44d26;
	background-color: rgba(228, 77, 38, 0.15);
}
nav > ul > li:hover a{
	padding: 15px 30px 20px 30px;
}
.menu-html .submenu{
	background-color: rgb(230,100,40);
}
.submenu li:hover a{
	color: #EEE;
	font-weight: bold;
} 
.menu-html .submenu li:hover{
	background-color: rgb(210, 77, 60);
}
nav input[type=checkbox]:checked ~ ul{
	display: block;
}
 @media screen and (max-width: 680px){
 	.menu-mobile {
 		display: block;
 		color: white;
 		background-color: black;
 		text-align: center;
 		padding: 12px 0;
 	}
 	nav ul{
 		display: none;
 	}

 	nav ul li, nav ul li a {
 		width: 100%;
 		text-align: center;
 	}
 	nav ul li a, nav ul li:hover a{
 		padding: 10px 0px 10px 0px;
 	}
 	nav li:hover .submenu{
 		display: block;
 		position: static;
 	}
 }
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 99%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}
