body {
  font-family: sans-serif;
  padding: 20px;
  background: #e6f2ff; /* Bleu clair pour assortir avec le logo */
  display: flex;
  gap: 20px;
}

#leftPanel {
  width: 250px;
  background: #d4e6ff; /* Bleu très clair */
  padding: 10px;
  border-radius: 5px;
  height: fit-content;
}

#mainContent {
  flex: 1;
}

input, button {
  padding: 10px;
  margin: 5px;
  border: 1px solid #4d94ff; /* Bleu moyen */
}

button {
  background-color: #4d94ff; /* Bleu moyen */
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #3373cc; /* Bleu plus foncé */
}

#score {
  font-weight: bold;
  margin-top: 10px;
}

#guessedWords {
  margin-top: 10px;
}

.correct {
  color: green;
  font-weight: bold;
}

.close {
  color: orange;
  font-weight: bold;
}

#titleReveal {
  margin-top: 20px;
  font-size: 1.2em;
}

.greek-message {
  background-color: #0066cc; /* Bleu foncé */
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.french-message {
  background-color: white;
  color: #0066cc; /* Bleu foncé */
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #0066cc;
  margin-bottom: 10px;
}

#wikiLink {
  color: #0066cc; /* Bleu foncé */
  text-decoration: none;
  font-weight: bold;
}

#wikiLink:hover {
  text-decoration: underline;
}

#maskedText {
  margin-top: 20px;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
}

#maskedTitle {
  font-size: 1.5em;
  margin-top: 10px;
  font-weight: bold;
  color: #0066cc; /* Bleu foncé */
}

.word {
  display: inline-block;
  margin: 2px;
  padding: 2px;
}

.revealed {
  background: #cce5ff; /* Bleu très clair */
}

.hidden {
  display: inline-block;
  color: transparent;
  user-select: none;
}

.hidden::before {
  content: attr(data-hidden);
  color: black;
}

input[type="text"] {
  border: 1px solid #4d94ff; /* Bleu moyen */
}
#textContainer, #translationContainer {
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  margin-top: 20px;
  width: 100%;
  display: block;
}

#translationContainer {
  margin-top: 20px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 5px;
}
#loadingMessage {
  text-align: center;
  padding: 10px;
  color:#FFFFFF;
  background-color: #0066cc;/*fond bleu foncé*/
  border-radius: 5px;
  margin: 10px 0;
  display: none;
}
