body {
  font-family: 'Georgia', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.bible-viewer-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 800px;
  width: 90%;
  text-align: center;
}

h1 {
  color: #4a4a4a;
  margin-bottom: 30px;
  font-size: 2.2em;
}

.controls {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #fefefe;
  cursor: pointer;
  appearance: none; /* Remove default browser styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.3%203.1-16.1%208.1-3.8%205.1-4.6%2011.6-2.9%2017.7l139%20139.2c3.8%203.8%209%206%2014.1%206s10.3-2.2%2014.1-6L289.8%2095.5c3.7-6.2%203-12.7-1.7-17.7z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto;
}

select:focus {
  border-color: #79a1f5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(121, 161, 245, 0.2);
}

.bible-text-display {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  font-size: 1.15em;
  min-height: 200px;
  overflow-y: auto;
  margin-bottom: 25px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.bible-text-display p {
  margin: 0 0 1em 0;
}

.bible-text-display p:last-child {
  margin-bottom: 0;
}

.verse-number {
  font-weight: bold;
  color: #888;
  margin-right: 8px;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

button {
  background-color: #6a8eec;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #557cdb;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bible-viewer-container {
    padding: 20px;
  }
  h1 {
    font-size: 1.8em;
  }
  .controls {
    flex-direction: column;
    gap: 10px;
  }
  select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bible-text-display {
    font-size: 1em;
    padding: 15px;
  }
  button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}
