/*
 Theme Name:   EduPress Child
 Theme URI:    https://edupress.thimpress.com/
 Description:  EduPress Child Theme
 Author:       ThimPress
 Author URI:   https://thimpress.com
 Template:     edu-press
 Version:      1.0.0
 Text Domain:   edu-press-child
*/

.ebook-lesson-wrapper {
        font-family: 'Hind Siliguri', sans-serif !important;
        background-color: #ffffff;
        color: #333;
        line-height: 1.8;
        font-size: 18px;
        padding: 10px;
        border-radius: 8px;
    }

    .ebook-container {
        max-width: auto;
        margin: 0 auto;
        background: #ffffff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 5px solid #2980b9;
    }

    /* Typography Overrides */
    .ebook-lesson-wrapper h2 {
        color: #2c3e50;
        font-size: 26px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .ebook-lesson-wrapper h3 {
        color: #2980b9;
        font-size: 22px;
        margin-top: 30px;
        font-weight: 600;
    }
    
    .ebook-lesson-wrapper p {
        margin-bottom: 15px;
    }

    /* Intro Section */
    .intro-section {
        font-style: italic;
        color: #555;
        border-left: 4px solid #2980b9;
        padding-left: 20px;
        margin-bottom: 40px;
        background: #fafafa;
        padding: 20px;
        border-radius: 0 8px 8px 0;
    }

    /* Highlight Boxes */
    .highlight-box {
        background-color: #eaf2f8;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border: 1px solid #d6eaf8;
    }

    .highlight-box strong {
        color: #2980b9;
    }
    
    .success-box {
        background: #e8f5e9; 
        border-color: #c8e6c9;
    }

    /* Lists */
    .ebook-lesson-wrapper ul {
        list-style: none;
        padding-left: 0;
        margin: 20px 0;
    }

    .ebook-lesson-wrapper ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
    }

    .ebook-lesson-wrapper ul li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #2980b9;
        font-weight: bold;
    }
    
    .ebook-lesson-wrapper ul.custom-list li {
        padding-left: 0;
    }
    .ebook-lesson-wrapper ul.custom-list li::before {
        content: '';
    }

    /* Conclusion Section */
    .conclusion {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin-top: 50px;
        text-align: center;
    }

    .conclusion h3 {
        color: white !important;
        margin-top: 0;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .conclusion p {
        color: #f0f0f0;
    }

    .cta {
        font-weight: 600;
        font-size: 20px;
        margin-top: 20px;
        display: block;
        color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .ebook-container {
            padding: 10px;
        }
        .ebook-lesson-wrapper {
            font-size: 16px;
            padding: 10px;
        }
    }
