body {
	font-family: Arial, sans-serif;
	background: #fff;
    /* background: #77B5FE; */
	margin: 0;
	padding: 0;
}

.header {
	text-align: right;
	padding: 15px;
	background: #f4f4f4;
	border-bottom: 1px solid #ddd;
}

.header a {
	color: red;
	text-decoration: none;
	font-weight: bold;
}

.welcome {
	text-align: center;
	margin-top: 10px;
	font-size: 18px;
}

.tabs {
	display: flex;
	justify-content: center;
	border-bottom: 2px solid #007bff;
	background: #f9f9f9;
}

.tab-button {
	padding: 12px 25px;
	cursor: pointer;
	border: none;
	background: none;
	font-size: 16px;
	color: #333;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tab-button:hover {
	background: #eaeaea;
}

.tab-button.active {
	border-bottom: 3px solid #007bff;
	color: #007bff;
	font-weight: bold;
}

#main-content {
	padding: 20px;
}

@media (max-width: 600px) {
	.tab-button {
		font-size: 14px;
		padding: 10px;
	}
}
body{
    /* background: #77B5FE; */
}
td{
	text-align: left;
}
td.image-col {
  width: 150px;
  height: 150px;/*     optionnel */
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}

td.image-col img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  margin: auto;   /* centre l'image */
}

#container{
    width:400px;
    margin:0 auto;
    margin-top:10%;
}
/* Bordered form */
.monForm {
    width:100%;
    padding: 30px;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
#container h1{
    width: 38%;
    margin: 0 auto;
    padding-bottom: 10px;
}

/* Full-width inputs */
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/* Full-width inputs */
.monInput[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
input[type=submit] {
    background-color: #53af57;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}
input[type=submit]:hover {
    background-color: white;
    color: #53af57;
    border: 1px solid #53af57;
}
.toggle-button {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 10px;
}
.toggle-button.active {
    background-color: #4CAF50;
}
.toggle-circle {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: white;
    border-radius: 50%;
    top: 1px;
    transition: left 0.3s;
}
/* Style pour l'overlay */
.progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Toujours au-dessus du contenu */
}

/* Masque l'overlay */
.hidden {
    display: none;
}

/* Conteneur de la barre de progression */
.progress-container {
    width: 80%;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Barre de progression */
.progress-bar {
    height: 30px;
    width: 0%;
    background-color: #4caf50;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    transition: width 0.5s;
}
.active_img{
	width:50px;
}
.active_img.active{
	filter: grayscale(100%);
	opacity: 0.5;
}


