/**
 * Remover completamente todas as setas de navegação
 * Plugin Bíblia Digital
 */

/* Remover completamente qualquer elemento de seta ou navegação lateral */
.swipe-area,
.swipe-indicator,
.swipe-left,
.swipe-right,
.swipe-left-indicator,
.swipe-right-indicator,
[class*="swipe-"],
[class*="indicator"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
    visibility: hidden !important;
}

/* Remover setas de navegação que aparecem ao clicar nas laterais */
.biblia-digital-container::before,
.biblia-digital-container::after,
.biblia-content::before,
.biblia-content::after,
.biblia-books::before,
.biblia-books::after,
.biblia-chapters::before,
.biblia-chapters::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Desativar qualquer evento que possa estar causando o aparecimento das setas */
body, 
.biblia-digital-container, 
.biblia-content, 
.biblia-books, 
.biblia-chapters,
.book-grid,
.chapter-grid {
    pointer-events: auto !important;
}

/* Garantir que os cards sejam clicáveis */
.book-grid .book-card,
.chapter-grid .chapter-card {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

/* Remover qualquer espaço reservado para as setas */
.biblia-digital-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: visible !important;
}

/* Garantir que os cards nas extremidades sejam totalmente visíveis */
.book-grid,
.chapter-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

/* Desativar qualquer evento de toque que possa estar causando o aparecimento das setas */
@media (max-width: 768px) {
    body, 
    .biblia-digital-container, 
    .biblia-content {
        touch-action: pan-y !important;
    }
    
    .book-card, 
    .chapter-card {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}
