body{
	font-family: serif;
	padding: 0;
	margin: 0;
	background-color: rgb(230,230,230);
	font-size: 19px;
}
header{
	background-color: rgb(40, 100, 150);
	color: white;
	padding: 15px;
	text-align: center;
	font-size: 20px;
}
header a{
	color: white;
	display: inline-block;
	width: 100%;
}


#wlcm{
	font-family: fantasy;
	color:rgb(40, 100, 150);
	text-align:center;
}

div{
	border-top:solid 2px black;
}

.logs{
	align-items: center;
	padding: 10px;
}

.log{
	border:solid 2px black;
	border-radius: 3px;
	display: block;
	margin: 10px;
	width: 90%;
	height: 50px;
	text-align: center;
	align-items: center;
	font-family: tahoma;
	font-size: 15px;
	div{
		border: none;
	}
}

.log:hover{
	border: solid 3px black;
	font-weight: bold;
}

#choix{
	font-family: sans-serif;
	text-align: center;
}

.pub{
	background-color: rgb(40, 100, 150);
	color: white;
	font-family: monospace;
	font-size: 15px;
	text-align: center;
	align-items: center;
}

.pub a{
	display: inline-block;
	text-decoration: none;
	color:white;
	padding: 5px;
	border:solid 2px white;
	border-radius: 10px;
	margin: 5px;
	font-family: serif;
}

.q_inf{
	border:none;
}

.q_inf img{
	width: 15px;
}

.q_inf:hover{
	opacity: 0.7;
}

/* Style pour les écrans plus petits que 600px */
@media screen and (max-width: 600px) {

}
#prevPageBtn {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
}

#prevPageBtn:hover::after {
  content: "Page précédente";
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  display: none;
}

#prevPageBtn:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
  display: none;
}

#prevPageBtn:hover::after, #prevPageBtn:hover::before {
  display: block;
}