/* Estilos generales */
.page {
  background: linear-gradient(to bottom, #2c3e50, #34495e);
  font-family: 'Arial', sans-serif;
  color: #ecf0f1;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Encabezado */
.header {
  background: #1abc9c;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.header__title {
  font-size: 2.2em;
  text-transform: uppercase;
  font-weight: bold;
}

.header__icon {
  margin-right: 10px;
}

/* Contenido principal */
.content {
  padding: 40px 0;
  flex-grow: 1;
}

.book, .chapter {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.book__label, .chapter__label {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.book__select, .chapter__select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #1abc9c;
  background: #fff;
  color: #333;
}

/* Sección del versículo */
.verse {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  flex-grow: 1;
}

.verse__text {
  font-size: 1.4em;
  font-style: italic;
}

.verse__icon {
  margin-right: 5px;
}

/* Pie de página */
.footer {
  background: #1abc9c;
  padding: 15px;
  margin-top: auto;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}

.footer__text {
  font-size: 1.1em;
  font-weight: bold;
}

.footer__icon {
  margin-right: 5px;
}
