/* Course Progress Section Styles */
.progress-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.continue-courses {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-progress-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.course-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.course-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.course-details {
    flex: 1;
}

.course-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.instructor {
    font-size: 14px;
    color: #64748b;
}

.continue-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.continue-btn:hover {
    background: #4338ca;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

@media (max-width: 768px) {
    .course-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .continue-btn {
        width: 100%;
        margin-top: 12px;
    }
}
