
/**
 * Estilos para o aplicativo da Bíblia
 */

/* Estilos básicos */
.bible-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.bible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.bible-verse {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.verse-number {
    font-weight: 600;
    margin-right: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

.bible-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.bible-button {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bible-button:hover {
    background-color: #e5e7eb;
}

/* Interface de pesquisa */
.search-container {
    display: flex;
    margin-bottom: 1rem;
}

.bible-search {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem 0 0 0.375rem;
    font-size: 0.875rem;
}

.search-container .bible-button {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Livros da Bíblia */
.book-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Home */
.bible-home {
    text-align: center;
    padding: 2rem 0;
}

.bible-home .bible-button {
    margin: 0.5rem;
}

/* Indicador de carregamento */
.biblia-app-loading::after {
    content: "Carregando...";
    display: block;
    text-align: center;
    padding: 2rem;
    font-style: italic;
    color: #666;
}
