body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.flashcard {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;

}

.flashcard .word-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.flashcard .word {
  font-size: 44px;
  margin-right: 5px;
}

.flashcard .arabic-word { /* In đậm từ tiếng Ả Rập */
  font-weight: bold;
}

.flashcard .pronunciation {
  font-size: 18px;
  color: #555;
}

.flashcard .translation {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.flashcard .image {
 
  object-fit: cover;
  margin-bottom: 10px;
      border-radius: 5px;
}

.flashcard .buttons {
  display: flex;
  justify-content: space-around;
}

.flashcard button {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50; 
  color: white;
  cursor: pointer;
  margin-right: 5px;
}
.flashcard button i {
  margin-right: 5px; 
}