.orphan-card {
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.orphan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bilingual-card {
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
}

.bilingual-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.warning-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.paragraph-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.language-toggle {
    position: sticky;
    top: 20px;
    z-index: 100;
}

.bilingual-content {
    display: none;
}

.bilingual-content.active {
    display: block;
}

.latin-text {
    font-style: italic;
    color: #6f42c1;
}

.chapter-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}

.chapter-badge:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mobile-tabs {
        display: block !important;
    }
    .desktop-columns {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-tabs {
        display: none !important;
    }
    .desktop-columns {
        display: block !important;
    }
}
