/* Simple Text-Based Lessons Display */
#lessonsTextList {
    width: 100% !important;
    display: block !important;
    min-height: 50px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.lessons-text-container {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    display: block;
    width: 100%;
}

.lessons-text-container h4 {
    margin: 0 0 1rem 0;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
}

.lesson-text-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.lesson-text-item:last-child {
    border-bottom: none;
}

.lesson-text-main {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.lesson-text-main strong {
    color: #1f2937;
}

.lesson-status-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.lesson-status-text.status-safe {
    color: #059669;
}

.lesson-status-text.status-warning {
    color: #d97706;
}

.lesson-status-text.status-danger {
    color: #dc2626;
}

.lesson-text-details {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.lesson-text-actions {
    margin-top: 0.5rem;
}

.no-lessons {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .lessons-text-container {
        padding: 1rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .lessons-text-container h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .lesson-text-item {
        padding: 0.75rem 0;
    }
    
    .lesson-text-main {
        font-size: 0.95rem;
    }
    
    .lesson-text-details {
        font-size: 0.85rem;
    }
    
    .no-lessons {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #lessonsTextList {
        display: block !important;
        min-height: 30px;
    }
    
    .lesson-text-main {
        font-size: 0.9rem;
    }
    
    .lesson-text-details {
        font-size: 0.8rem;
    }
    
    .lesson-text-actions .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}