.page-wrapper {
  max-width: 480px;      /* or 430px */
  width: 100%;
  margin: 0 auto;        /* centers the container */
margin-top: -1.3em; /* adjust as needed */
  padding: 0 1em;        /* side padding for small screens */
  box-sizing: border-box;
}

.word-container {
  max-width: 430px;
  margin: 10px 0;
  padding: 0;
  background-color: #000;
  text-align: left;
  color: #eee;
  font-size: 1.2rem;
	font-weight: 300;
  line-height: 1.4;
}

.word-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* Adjustments for h1 inside word-container */
.word-container h1 {
  color: #ca952e; /* Voice Japan orange */
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: -0.2em;
}

/* Example title and example sentence colors */
.example-title {
  color: #7b8b4a; /* Voice Japan green */
  font-weight: bold;
  margin-top: 1em;
}

.example-sentence {
  color: #999;
  font-style: italic;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

/* Center the control buttons */
.vj-play-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5em;
}

/* Style buttons consistently with VoyJay theme */
.vj-control-button {
  background-color: #483d04;
  border-radius: 10px;
  border: none;
  color: white;
  padding: 0.6em 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.vj-control-button:hover {
  background-color: #caa64a;
  transform: scale(1.05);
}

/* Audio player styling */
#audioPlayer {
  display: block;
  margin: 0 auto 2em auto;
  max-width: 480px;
  width: 100%;
  outline: none;
}

p {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.example-title {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}

.example-sentence {
  margin-top: 0.2em;
  margin-bottom: 0.6em;
  font-style: italic;
  color: #999;
}

.okurigana {
  color: #ca952e; /* or #ca952e for orange */
  font-weight: bold;
}

.highlight {
  color: #ffda63;
  font-weight: 600;
}

.vj-scroll-box {
  margin: 0px auto 20px;
  padding: 10px;
  max-width: 600px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #000;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  z-index: 5;
}

.vj-button {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  padding: 10px 18px;
  font-size: 16px;
  background-color: #7b8b4a; /* Olive green tone */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: center;
}
.vj-button:hover {
  background-color: #9aa35a; /* Slightly lighter hover */
}