/* Estilos gerais */
#app {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  

  
  /* Container da Bíblia */
  .bible-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  /* Estilos para a área de busca */
  .bible-search {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .bible-search select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  
  .bible-search select:hover {
    border-color: #2c3e50;
  }
  
  /* Estilos para o conteúdo da Bíblia */
  .bible-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  .bible-intro {
    text-align: center;
    color: #666;
    font-style: italic;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    .bible-search {
      flex-direction: column;
      align-items: center;
    }
  
    .bible-search select {
      width: 100%;
      max-width: 300px;
    }
  
    .bible-content {
      padding: 15px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 1.5rem;
    }
  
    .bible-search select {
      font-size: 0.9rem;
    }
  
    .bible-content {
      font-size: 0.9rem;
    }
  }