
.zone-jeu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.historique {
    display: none;               /* caché au départ */
    width: 320px;
    max-width: 100%;             /* ne dépasse jamais la zone de jeu */
    
    margin: 10px 0px;              /* espace vertical */
    padding: 6px 10px;

    font-size: 0.9rem;
    background-color: #F0F0F0;

    border: 1px solid #ccc;
    border-radius: 4px;

    box-sizing: border-box;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
}

/* Suppression flèches Chrome / Edge / Safari */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
	padding: 5px;
    margin: 0px 0px 10px;
	border-radius: 3px;
	border: 1px solid #747474; /* #2B7CFF */
}

/* Firefox Edge, Chrome, Safari */
input[type=text] {
    -moz-appearance: textfield;
	padding: 5px;
    margin: 0px 0px 10px;
	border-radius: 3px;
	border: 1px solid #0066CC; /*#747474; /* #2B7CFF */
}

input[type=text]:focus {
    outline: none;                 /* supprime le contour noir */
    border-color: #0066CC;
    box-shadow: 0px 0px 0px 1px #0066CC;  /* contour bleu visible partout */
	border-radius: 3px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: "\002335";
    font-size: 1.5rem;
    font-weight: bold;
	color: #2034BD;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-58%);
	padding: 4px;
    pointer-events: none;
}

.select-wrapper:hover::after {
    color: #FF0000;
}

.select-tentatives {
    font-size: 0.8rem;
    font-weight: bold;
	color: #2034BD;
    padding: 4px;/**/
	border-radius: 3px;
	border: 1px solid #747474; /* #2B7CFF */
    cursor: pointer;
    padding-right: 30px;/**/
		
    appearance: none;          /* Firefox, Chrome */
    -webkit-appearance: none;  /* Chrome / Safari */
    -moz-appearance: none;     /* Firefox */
}

/* Flèche rouge au survol */
.select-tentatives:hover {
	background-color: #F0F0F0;
	color: #FF0000;
}

/* Flèche rouge au survol */
.select-tentatives option:hover {
	background-color: #F0F0F0;
	color: #FF0000;
}

/* Option sélectionnée */
.select-tentatives option:checked {
    color: #FF0000;
    font-weight: bold;
}

.txtmobile {
display: none;
}

.txtnormal {
	display: block;
}

#mobileHint {
	display: none;
    font-weight: bold;
}

#zone-solution {
	margin-top: 5px;
	margin-bottom: 10px;
}

#proposition {
	width: 130px; /* 150px; */
	font-size: 14px;
	text-align: left;
}

#infoTentatives, #message, #compteur {
	margin-top: 10px;
}

#envoyer, #annuler, #nouvelle {
	width: auto;
	height: auto;
	margin-bottom: 10px;
    padding: 14px 12px !important;
	border-radius: 8px;
	border: 2px solid #2B7CFF;
	background: linear-gradient(#FFFFFF,#EEF6FF);
    cursor: pointer;
	font-weight: 600;
}

#envoyer {
	margin-left: 20px;
}

#nouvelle {
	margin-left: 20px;
}

#solution {
	width: auto;
	height: auto;
	margin-top: -10px;
    padding: 14px 12px !important;
	border-radius: 8px;
	border: 2px solid #2B7CFF;
	background: linear-gradient(#FFFFFF,#EEF6FF);
    cursor: pointer;
	font-weight: 600;
}

button {
    padding: 6px 12px;
    cursor: pointer;
}

.boutons {
    margin-top: 10px;
}

#message {
    margin-top: 10px; /* 15px; */
    font-weight: bold;
}

.info {
    font-size: 1em;
    margin-bottom: 10px;
}

.devinernum {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: -10px;
	margin-bottom: -10px;
}

/* mobile */
@media only screen and (max-width:700px){
	#annuler, #nouvelle {
	padding: 16px 12px !important;
  }
	#envoyer {
	margin-left: 20px !important;
	padding: 16px 12px !important;
  }
	#solution {
	margin-top: -15px;
  }
	#proposition {
	width: 130px;
  }
	#infoTentatives, #message, #compteur {
	margin-top: 10px;
  }
	#mobileHint {
	display: block;
	font-weight: bold;
  }
	.colonnemilieu {
	width: 99.9999%;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
  }
	.historique {
	width: 250px;
  }
	.txtmobile {
	display: block;
  }
	.txtnormal {
	display: none;
  }
}

@media only screen and (min-width: 701px) and (max-width: 900px) {
	.txtmobile {
	display: block;
  }
	.txtnormal {
	display: none;
  }
	#mobileHint {
	display: block;
	font-weight: bold;
  }
}