/* Bible Styles für die Bibelanzeige */

.bible-wrapper {
    margin-top: 20px;
}

.bible {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.bible-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #0066cc;
}

.bible-book {
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    color: #333;
    margin: 0;
}

.bible-book-chapter {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
}

.bible-text {
    margin: 20px 0;
    line-height: 1.6;
}

.verse {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    padding: 5px 0;
    transition: background-color 0.3s ease;
}

.verse:hover {
    background-color: #f8f9fa;
    border-radius: 3px;
    padding: 5px;
    margin: 2px 0;
}

.verse-num {
    font-size: 16px;
    color: #0066cc;
    font-weight: bold;
    margin-right: 5px;
    min-width: 35px;
    display: inline-block;
}

.bible-text sup {
    font-size: 12px;
    color: #0066cc;
    cursor: pointer;
    padding: 1px 3px;
    border-radius: 2px;
    background-color: rgba(0, 102, 204, 0.1);
    margin: 0 2px;
}

.bible-text sup:hover {
    background-color: rgba(0, 102, 204, 0.2);
}

.bible-notes {
    display: block;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #0066cc;
}

.bible-settings {
    margin-left: auto;
    position: relative;
}

.bible-setting-icon {
    padding: 10px;
    border-radius: 50%;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bible-setting-icon:hover {
    background-color: #e9ecef;
    transform: rotate(90deg);
}

.bible-setting-icon i {
    font-size: 1.4em;
    color: #666;
}

.bible-setting-menu {
    display: none;
    background-color: white;
    border-radius: 8px;
    padding: 5px 0;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1000;
    width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

.bible-setting-menu-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.bible-setting-menu-item:last-child {
    border-bottom: none;
}

.bible-setting-menu-item:hover {
    background-color: #0066cc;
    color: white;
}

.bible-setting-menu-item:active {
    background-color: #004499;
}

/* Hervorgehobener Vers */
.verse.highlighted {
    background-color: #fff3cd !important;
    border-left: 4px solid #ffc107;
    padding: 10px !important;
    margin: 5px 0 !important;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fließtext-Modus */
.verse.flow-text {
    display: inline;
    margin-bottom: 0;
}

.verse.flow-text::after {
    content: " ";
}

/* Responsive Design */
@media (max-width: 768px) {
    .bible {
        width: 95%;
    }
    
    .bible-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .bible-book {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .bible-book-chapter {
        font-size: 24px;
    }
    
    .bible-settings {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .verse {
        font-size: 16px;
    }
    
    .verse-num {
        font-size: 14px;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .bible {
        width: 98%;
    }
    
    .bible-book {
        font-size: 20px;
    }
    
    .bible-book-chapter {
        font-size: 20px;
    }
    
    .verse {
        font-size: 15px;
    }
    
    .bible-setting-menu {
        width: 150px;
        right: -10px;
    }
}
