/* Reset dla kompatybilności z motywami */
.lms-course-single-wrapper,
.lms-quiz-container-fixed {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    font-family: inherit; /* Dziedzicz z motywu */
}

/* Zapobiega konfliktom z motywem */
.lms-course-single-wrapper * {
    box-sizing: border-box;
}

.lms-course-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.lms-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.lms-module-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

/* Quiz styles */
.quiz-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.quiz-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.quiz-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quiz-btn.secondary {
    background: #6c757d;
    color: white;
}

/* Responsywność */
@media (max-width: 768px) {
    .lms-course-single-wrapper {
        padding: 10px;
    }
    
    .lms-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-btn {
        width: 100%;
        margin: 5px 0;
    }
}